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.
Find Similar Images
Moderators: helmut, XnTriq, xnview
Re: Find Similar Images
Ok, Good idea, I'll add this on the list of XnView enhancements..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.
Pierre.
Find Similar Images
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
::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
A.H. Carter
d(-_-)b
OS:Win 98 SE
Processor:Cyrix 6x86MX (MMX), 250 MHz
Xnview Ver: 1.74
RAM: 380MB