In Javacv cvCreateFileCapture is not able to read the video from the memory

103 Views Asked by At

I am trying to import video in javacv but cvCreateFileCapture("Filename") class is returning null value and I have also tried using OpenCVFrameGrabber("File name"), it is also not working properly.

Here is my code :

public class SmokeDetectionInStoredVideo {
    private static final int IMG_SCALE = 2;
    private static final int width = 640;  
    private static final int height = 480;

public static void main(String args[]){
    System.loadLibrary(Core.NATIVE_LIBRARY_NAME);
    CvMemStorage storage = CvMemStorage.create();
    IplImage img1=null,imghsv=null,imgbin=null;
    CvSeq contour1;
    CvSeq contour2;
    double areaMax = 00, areaC = 0.0;
    imghsv = IplImage.create(width/IMG_SCALE, height/IMG_SCALE, 8, 3);
    imgbin = IplImage.create(width/IMG_SCALE, height/IMG_SCALE, 8, 1);
    try{
        CvCapture capture = cvCreateFileCapture("Red.mp4");//cvCreateCameraCapture(0);
        if(capture.isNull()){
            System.out.println("Error reading file");
        }
        IplImage grabbedImage = cvQueryFrame(capture);
        OpenCVFrameConverter.ToIplImage converter=new OpenCVFrameConverter.ToIplImage();
        CanvasFrame canvasFrame = new CanvasFrame("Actual Video");
        CanvasFrame canvasBinFrame = new CanvasFrame("Contour Video");
        canvasFrame.setCanvasSize(grabbedImage.width(), grabbedImage.height());
        canvasBinFrame.setCanvasSize(grabbedImage.width(), grabbedImage.height());
        imghsv = IplImage.create(grabbedImage.width(), grabbedImage.height(), 8, 3);
        imgbin = IplImage.create(grabbedImage.width(), grabbedImage.height(), 8, 1);

        while (canvasFrame.isVisible() && (img1 = cvQueryFrame(capture)) != null) {
            cvCvtColor(img1, imghsv, CV_RGB2HSV);
            //canvasFrame.showImage(converter.convert(imghsv));

            cvInRangeS(img1, cvScalar(220, 220, 220, 0), cvScalar(235, 235, 235, 0), imgbin);
            contour1 = new CvSeq();
            cvFindContours(imgbin, storage, contour1, Loader.sizeof(CvContour.class), CV_RETR_LIST, CV_LINK_RUNS);
            contour2 = contour1;

            while (contour1 != null && !contour1.isNull()) {
                areaC = cvContourArea(contour1, CV_WHOLE_SEQ, 1);
                if(areaC>areaMax){
                    areaMax = areaC;
                }
                contour1 = contour1.h_next();
            }

            while (contour2 != null && !contour2.isNull()){
                areaC = cvContourArea(contour2, CV_WHOLE_SEQ, 1);
                if(areaC>areaMax){
                    cvDrawContours(imgbin, contour1, CV_RGB(0, 0, 0), CV_RGB(0, 0, 0), 0, CV_FILLED, 8);
                }
                contour2 = contour2.h_next();
            }
            canvasBinFrame.showImage(converter.convert(imgbin));
            canvasFrame.showImage(converter.convert(img1));
        }
        canvasFrame.dispose();
        cvReleaseMemStorage(storage);
        cvReleaseImage(img1);
        cvReleaseImage(imgbin);
        cvReleaseImage(imghsv);
    }
    catch (Exception e) {
        System.out.println("Error while processing video");
        // TODO: handle exception
    }
}

}

Is there any other way of importing the video in javacv.

1

There are 1 best solutions below

1
On

Are you sure that you have this file in your class path? Can you try the following to check if the file exists and show the output please?

File file = new File("Red.mp4");
System.out.println(file.exists());