English 中文(简体)
查明类似形象的良好方法? [闭门]
原标题:Good way to identify similar images? [closed]
Closed. This question needs to be more focused. It is not currently accepting answers.

我在PHP中开发了一个简单快捷的算法,以比较类似图像。

其快速(800x600图像的每秒约40张)的散射和未经开发的搜索算法可在每秒22分钟有3 000张图像,而每秒则与他人相比(3秒)。

基本概况是,你获得了图像,将其重新定位为8x8,然后转换为HSV。 之后,Hue、饱和和价值被拖到4个轨道上,成为一只大海绵。

对比图像基本上沿两个阵列走,然后增加其发现的差异。 如果总数低于64岁,则其形象不变。 不同的图像通常在600-800之间。 低于20岁,非常相似。

Are there any improvements upon this model I can use? I havent looked at how relevant the different components (hue, saturation and value) are to the comparison. Hue is probably quite important but the others?

为了加快搜索,我可能把4个轨道从每个部分分割一半,并且首先把最重要的比照放在一边,如果它们不进行检查,那么就必须彻底检查灯泡。 我知道有效率的办法来储存像现在这样仍然能够轻易搜寻和比较的借方。

我先使用3 000个照片(最独特)的数据集,有假的照片。 它完全可以消化和抵制光明和对比变化。

最佳回答

你们想要的是:

  1. Feature extraction
  2. Hashing
  3. Locally aware bloom hashing.

  1. 大多数人使用<>SIFT特征,尽管我有更好的经验,而不是规模。 基本上,你使用最先进的探测器找到有趣的点子,然后把图像拼凑起来。 这样,你也能发现次剂量。

  2. 你们实施的方法是洗衣。 有吨可以尝试,但你应当做以下工作:

  3. 加快这一进程的关键步骤是唤醒你的灵魂。 你将贵方的价值观变成了无常的代表性,然后随机将比照作为新 has。 有20-50个随机样本,有20-50个散列。 如果在50个散列表中有2个或2个以上,则该特征与已经储存的1个表非常相似。 这使你能够转换 a(x-y)

希望能帮助你,如果你想尝试我自我开发的图像相似性搜索,就把我寄在spratpix

问题回答

暂无回答




相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签