Find Similar Images

Ask for help and post your question on how to use XnView Classic.

Moderators: helmut, XnTriq, xnview

Post Reply
Guest

Find Similar Images

Post by Guest »

In PixiePlus and gqview, both available on Linux only, there is a function to search similar images. I wonder if it is possible to have this feature in XnView. I tried to install Perlmagick to run findimagedups on a Windows2000 machine, but the set up is not trivial and cygwin is required. Since nconvert already does the conversions, one can write a batch or VB script to perform the task, however, this still lacks a GUI to display the result. This would be a very nice feature in XnView.

Thanks for providing such fine pieces of work for free.
User avatar
xnview
Author of XnView
Posts: 46235
Joined: Mon Oct 13, 2003 7:31 am
Location: France
Contact:

Re: Find Similar Images

Post by xnview »

Anonymous wrote:In PixiePlus and gqview, both available on Linux only, there is a function to search similar images. I wonder if it is possible to have this feature in XnView. I tried to install Perlmagick to run findimagedups on a Windows2000 machine, but the set up is not trivial and cygwin is required. Since nconvert already does the conversions, one can write a batch or VB script to perform the task, however, this still lacks a GUI to display the result. This would be a very nice feature in XnView.
Ok, Good idea, I'll add this on the list of XnView enhancements..
Pierre.
AHCarter
Posts: 33
Joined: Thu Jan 01, 2004 10:13 pm
Location: South Carolina USA

Find Similar Images

Post by AHCarter »

Would you be talking about same types of files? If so try this batch:

::FindPics.bat
::
CD D:\
DIR D:\MYDOCU~1\*.BMP /S /O >> D:\MYDOCU~1\PIC-LIST.TXT
echo.>>D:\MYDOCu~1\PIC-LIST.TXT
echo.>>D:\MYDOCu~1\PIC-LIST.TXT
DIR D:\MYDOCU~1\*.GIF /S /O >> D:\MYDOCU~1\PIC-LIST.TXT
echo.>>D:\MYDOCu~1\PIC-LIST.TXT
echo.>>D:\MYDOCu~1\PIC-LIST.TXT
DIR D:\MYDOCU~1\*.JPG /S /O >> D:\MYDOCU~1\PIC-LIST.TXT

******************
Edit it accordingly, or try this overall search one:

:: Search.bat
::
@ECHO OFF
DIR C:\ /s/o >> "C:\Windows\Temp\Query Search results.txt"
Echo ------ >> "C:\Windows\Temp\Query Search results.txt"
DIR D:\ /s/o >> "C:\Windows\Temp\Query Search results.txt"
FIND /i "%1" "C:\Windows\Temp\Query Search results.txt" > "D:\My Documents\QueryResults.txt"
DEL "C:\Windows\Temp\Query Search results.txt"
EDIT "D:\My Documents\QueryResults.txt"


With the latter one you could search for any text JPG and if any files are found such will be listed. The drawback is that for files only the file name is listed, whereas folders, the whole path is listed. I wrote that mainly due to the Windows Find lack of hard copy. Yet twould seem both have their own drawbacks.
******************
Edit it accordingly
Sincerely,
A.H. Carter
d(-_-)b

OS:Win 98 SE
Processor:Cyrix 6x86MX (MMX), 250 MHz
Xnview Ver: 1.74
RAM: 380MB
Post Reply