Skip to content

Commit

Permalink
Merge pull request bilderbuchi#10 from ludug3r0/debug
Browse files Browse the repository at this point in the history
Webcam workaround
  • Loading branch information
bilderbuchi committed May 20, 2011
2 parents 20bf463 + 4c51d86 commit 78ebabf
Show file tree
Hide file tree
Showing 5 changed files with 130 additions and 11 deletions.
7 changes: 7 additions & 0 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@
# an official version!
# Tracking is working in Octave now, with some changes w.r.t. Zdenek's branch
# See https://github.com/bilderbuchi/OpenTLD/issues/2 for more information.
#
# Webcam support is working in Matlab WITHOUT Image Acquisition Toolbox
# through stream_server.c using sockets and OpenCV.
#
# Webcam in octave is near completion. Frames are grabbed properly from the
# server but problems with mouse input arise when selectin object boudaries.
# For stream_server.c to work in octave, the package sockets should be present.
################################################################################

TLD (aka Predator)
Expand Down
2 changes: 1 addition & 1 deletion img/img_alloc.m
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
img.input = rgb2gray(in);
%img.input = imadjust(img.input);
else
img.input = in;
img.input = uint8(in);
end

% img.input = fliplr(img.input);
Expand Down
12 changes: 11 additions & 1 deletion img/img_get.m
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,17 @@
function img = img_get(source,I)

if source.camera
img = img_alloc(getsnapshot(source.vid));
if (exist('videoinput','file')) % using matlab with Image Acquisition package
img = img_alloc(getsnapshot(source.vid));
else % We don't have the Image Acquisition package, using stream_server
if exist('OCTAVE_VERSION','builtin') % from octave
[ data, count ] = recv (source.socket, 640*480, MSG_WAITALL);
stream_img = transpose(data);
else %from Matlab
stream_img = transpose(fread(source.socket, [640, 480], 'uint8'));
end
img = img_alloc(stream_img);
end
else
img = img_alloc(source.files(source.idx(I)).name);
end
40 changes: 31 additions & 9 deletions initcamera.m
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,36 @@

%source.vid = videoinput('winvideo', 1);
%source.vid = videoinput('winvideo', 1,'RGB24_320x240');
source.vid = videoinput('winvideo', 1,'YUY2_320x240');
if exist('videoinput','file')
source.vid = videoinput('winvideo', 1,'YUY2_320x240');

set(source.vid,'ReturnedColorSpace','grayscale');
vidRes = get(source.vid, 'VideoResolution');
nBands = get(source.vid, 'NumberOfBands');
hImage = image( zeros(vidRes(2), vidRes(1), nBands) );
set(source.vid,'ReturnedColorSpace','grayscale');
vidRes = get(source.vid, 'VideoResolution');
nBands = get(source.vid, 'NumberOfBands');
hImage = image( zeros(vidRes(2), vidRes(1), nBands) );

% open a figure that shows the raw video stream
preview(source.vid, hImage);
% makes the raw stream invisible
set(1,'visible','off');
% open a figure that shows the raw video stream
preview(source.vid, hImage);
% makes the raw stream invisible
set(1,'visible','off');
else %videoinput is not a valid function, try stream_server
if exist('OCTAVE_VERSION','builtin') %we are running octave
source.socket = socket(AF_INET, SOCK_STREAM, 0);
serverinfo.addr = 'localhost';
serverinfo.port = 5000;
connect_status = connect(source.socket, serverinfo);
else %we are running a Matlab without Image Acquisition package
source.socket = tcpip('localhost', 5000);
set(source.socket, 'InputBufferSize', 640*480);
fopen(source.socket);
connect_status = get(source.socket,'Status');
connect_status = strcmp(connect_status, 'closed');
end
% check connection status
if connect_status == 0 %successful connection
else %maybe stream_server is not running
%TODO: report error
error('Error while connecting to stream server!');

end
end
80 changes: 80 additions & 0 deletions stream_server.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
/*
A really simple server in the internet domain using TCP.
This is supposed to run with one client only.
The server is hardcoded to run on port 5000.
This program is extremely simple, and it's not in any way bugfree.
Author: Rafael Oliveira <ludug3r0@gmail.com>
*/

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>

#include <opencv/cv.h>
#include <opencv/highgui.h>

void error(const char *msg)
{
perror(msg);
exit(1);
}

int main(int argc, char *argv[])
{
CvCapture *capture = NULL;
IplImage *frame = NULL;
IplImage *gray = NULL;

int sockfd, newsockfd, portno;
socklen_t clilen;
struct sockaddr_in serv_addr, cli_addr;
int n;
sockfd = socket(AF_INET, SOCK_STREAM, 0);
if (sockfd < 0)
error("ERROR opening socket");
bzero((char *) &serv_addr, sizeof(serv_addr));
// if needed the port can be changed bellow
portno = atoi("5000");
serv_addr.sin_family = AF_INET;
serv_addr.sin_addr.s_addr = INADDR_ANY;
serv_addr.sin_port = htons(portno);
if (bind(sockfd, (struct sockaddr *) &serv_addr,
sizeof(serv_addr)) < 0)
error("ERROR on binding");

// Here you can choose if you wanna capture from CAM ou File
capture = cvCaptureFromCAM(0);
//capture = cvCaptureFromFile("/home/raso/Videos/BR.avi");


/* My webcam suplies me with 640x480 frames, if yours is different,
change bellow and don't forget to make changes in img/img_get.m */
gray = cvCreateImage(cvSize(640,480), IPL_DEPTH_8U, 1);
listen(sockfd,5);
clilen = sizeof(cli_addr);
newsockfd = accept(sockfd,
(struct sockaddr *) &cli_addr,
&clilen);
if (newsockfd < 0) error("ERROR on accept");
while (1) {
frame = cvQueryFrame(capture);
// In this case the frame is sent to the client in grayscale
cvCvtColor(frame, gray, CV_BGR2GRAY);
n = write(newsockfd,gray->imageData,gray->imageSize);
if (n < 0) error("ERROR writing to socket");

// The next line shows what the cam sees, you can comment it.
cvShowImage("Server", gray);
// You can get out of the server by pressing 'q'
if ((char)cvWaitKey(5) == 'q') break;
}
close(newsockfd);
close(sockfd);
return 0;
}

0 comments on commit 78ebabf

Please sign in to comment.