我有一个核心PHP的电子商务网站。我想添加像谷歌图像或其他反向图像搜索搜索引擎的逐图像设施。
我在互联网上进行了大量搜索,但我无法在我的网站上使用谷歌搜索工具(png("test.png", width = 4 * 800,
height = 4 * 800, res = 600)
ggplot(dat, aes(wd, MP1)) +
coord_polar( start = 0, direction = 1) +
xlab("")+
ylab("")+
scale_x_continuous(limits = c(0, 360), expand = c(0, 0), breaks = seq(0, 360-1, by = 90), labels=c("North", "East","South", "West")) +
geom_vline(xintercept = seq(0, 360-1, by = 15), colour = "grey90", size = 0.2) +
geom_bar(width=15, stat='identity', fill= "cyan", colour= "white") +
theme_bw() +
theme(panel.border = element_blank(),
legend.key = element_blank(),
axis.ticks = element_blank(),
axis.text.y = element_blank(),
axis.text.x = element_blank(),
panel.grid = element_blank(),
plot.background = element_rect(fill = NULL,colour = NA))
dev.off()
和api
)。主要原因是我想在网站内按图像搜索页面(搜索结果将是包含图像的页面)。这是场景。
当用户上传图像时,后端php将处理图像并查找已存储在服务器上的相关图像(图像存储在服务器的目录中,其文件名存储在与a关联的数据库中产品,反过来,它将列出具有类似产品图像的产品)
我假设首先我必须处理存储在服务器中的所有图像,并将相关的像素信息与文件名一起存储在数据库中。但是我不知道要存储什么以便以后搜索。
答案 0 :(得分:0)
使用谷歌搜索图片,您可以尝试阅读这篇文章: http://www.askdavetaylor.com/how_to_add_google_images_search_my_site/
看起来就是你的目标