필터 지우기
필터 지우기

i want to capture an image through fish-eye camera in real time and use that image for processing.can anybody suggest me how to do it

조회 수: 1 (최근 30일)
I used this code but it is using a webcam as an input for the video. I want to use a fish-eye camera instead. Please help.
% if(~isdeployed)
% cd(fileparts(which(mfilename)));
% end
% clc;
% Clear command window.
% clear;
% close all;
% Close all figure windows except those created by
% imtool close all;
% Close all figure windows created by imtool.
% workspace;
% Make sure the workspace panel is showing.
% fontSize = 36;
% % Start up the video.
% vid = videoinput('winvideo', 1, 'RGB24_640x480');
% vid.FramesPerTrigger = 1;
% preview(vid);
% start(vid);
% Get image and display it.
% rgbImage = getdata(vid);
% subplot(1,2, 1);
% imshow(rgbImage);
% title('Initial Image', 'FontSize', fontSize);
% set(gcf, 'Position', get(0,'Screensize'));
% Save this image to disk.
% fullImageFileName = fullfile( 'C:\Users\div\Desktop\myfirstimage.jpg');
% imwrite(rgbImage,fullImageFileName);
% Read it back in to check it.
% recalledImage = imread(fullImageFileName);
% subplot(1,2, 2);
% imshow(recalledImage);
% title('Recalled Image', 'FontSize', fontSize);

답변 (1개)

Image Analyst
Image Analyst 2013년 5월 27일
Other than the video mode name used in videoinput() might be different for a different camera model, why do you think the code should be any different than it is for a webcam or any other digital camera?
  댓글 수: 5
divya
divya 2013년 5월 28일
imaqhwinfo
ans =
InstalledAdaptors: {'gentl' 'gige' 'matrox' 'pointgrey' 'winvideo'}
MATLABVersion: '8.0 (R2012b)'
ToolboxName: 'Image Acquisition Toolbox'
ToolboxVersion: '4.4 (R2012b)'
>> imaqhwinfo('pointgrey')
ans =
AdaptorDllName: [1x82 char]
AdaptorDllVersion: '4.4 (R2012b)'
AdaptorName: 'pointgrey'
DeviceIDs: {[1]}
DeviceInfo: [1x1 struct]
this is the list of adaptors available

댓글을 달려면 로그인하십시오.

Community Treasure Hunt

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

Start Hunting!

Translated by