Borrar filtros
Borrar filtros

'demo_ASIFT' is not recognized as an internal or external command, operable program or batch file.

2 visualizaciones (últimos 30 días)
sir when i run ASIFT code i m getting this error please help me sir.my coding are here, file_img1 = 'adam1.png'; file_img2 = 'adam2.png'; imgOutVert = 'imgOutVert.png'; imgOutHori = 'imgOutHori.png'; matchings = 'matchings.txt'; keys1 = 'keys1.txt'; keys2 = 'keys2.txt'; flag_resize = 0;
(file_img1, file_img2, imgOutVert, imgOutHori, matchings, keys1, keys2, flag_resize);
%%calling function demo
function demo_ASIFT(file_img1, file_img2, imgOutVert, imgOutHori, matchings, keys1, keys2, flag_resize)
if (nargin == 8) if (isnumeric(flag_resize) && (flag_resize == 0)) flag_resize = 0; else flag_resize = 1; end elseif (nargin == 7) flag_resize = 1; else disp('*******************************************************************************'); disp('*************************** ASIFT image matching **************************'); disp('*******************************************************************************'); disp('Usage: ./demo_ASIFT imgIn1 imgIn2 imgOutVert.png imgOutHori.png'); disp(' matchings.txt keys1.txt keys2.txt [Resize option: 0/1]'); disp('- imgIn1, imgIn2: input images (in most standard formats).'); disp('- imgOutVert.png, imgOutHori.png: output images (vertical/horizontal concatenated,'); disp(' in PNG format.) The detected matchings are connected by write lines.'); disp('- matchings.txt: coordinates of matched points (col1, row1, col2, row2).'); disp('- keys1.txt keys2.txt: ASIFT keypoints of the two images.') disp('- [optional 0/1]. 1: input images resize to 800x600 (default). 0: no resize.'); disp('*******************************************************************************'); disp('********************* Jean-Michel Morel, Guoshen Yu, 2010 ******************'); disp('*******************************************************************************'); assert(false); end
imgIn1 = imread(file_img1); imgIn2 = imread(file_img2);
% convert the image to png format file_img1_png = 'tmpASIFTinput1.png'; file_img2_png = 'tmpASIFTinput2.png'; imwrite(imgIn1, file_img1_png, 'png'); imwrite(imgIn2, file_img2_png, 'png');
% get the number of processors % Mac if (ismac == 1) [s, w] = unix('sysctl -n hw.ncpu'); num_CPUs = str2num(w); % set the maximum OpenMP threads to the number of processors set_threads = sprintf('export OMP_NUM_THREADS=%d;', num_CPUs);
% ASIFT command
command_ASIFT = './demo_ASIFT';
command_ASIFT = [command_ASIFT ' ' file_img1_png ' ' file_img2_png ' ' ...
imgOutVert ' ' imgOutHori ' ' matchings ' ' keys1 ' ' keys2];
if (flag_resize == 0)
command_ASIFT = [command_ASIFT ' 0'];
end
command = [set_threads ' ' command_ASIFT];
% Unix elseif (isunix == 1) [s, w] = unix('grep processor /proc/cpuinfo | wc -l'); num_CPUs = str2num(w); % set the maximum OpenMP threads to the number of processors set_threads = sprintf('export OMP_NUM_THREADS=%d;', num_CPUs);
% ASIFT command
command_ASIFT = './demo_ASIFT';
command_ASIFT = [command_ASIFT ' ' file_img1_png ' ' file_img2_png ' ' ...
imgOutVert ' ' imgOutHori ' ' matchings ' ' keys1 ' ' keys2];
if (flag_resize == 0)
command_ASIFT = [command_ASIFT ' 0'];
end
command = [set_threads ' ' command_ASIFT];
% Windows
elseif (ispc == 1)
[s, w] = dos('set NUMBER_OF_PROCESSORS');
num_CPUs = sscanf(w, '%*21c%d', [1, Inf]);
% set the maximum OpenMP threads to the number of processors
setenv('OMP_NUM_THREADS', num2str(num_CPUs));
% ASIFT command
command_ASIFT = 'demo_ASIFT';
command_ASIFT = [command_ASIFT ' ' file_img1_png ' ' file_img2_png ' ' ...
imgOutVert ' ' imgOutHori ' ' matchings ' ' keys1 ' ' keys2];
if (flag_resize == 0)
command_ASIFT = [command_ASIFT ' 0'];
end
command = command_ASIFT;
else
error('Unrecognized operating system. The operating system should be Windows, Linux/Unix, or Mac OS.');
end
status = system(command);
end
  1 comentario
Nikhil Sreekumar
Nikhil Sreekumar el 27 de Abr. de 2017
Hi Vani,
First of all, please have a look into the guideline for posting a question in the following link:
This will help you as well as us in getting a solution fast. Also the please don't post the entire code if you know which are the potential areas of error in the code.
Another thing, please provide a summary of what exactly are you doing. this will help us to get a starting point.
Thanks
Nikhil

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Image Processing Toolbox en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by