Ask Your Question

JaneSnow's profile - activity

2018-01-23 14:09:38 -0600 asked a question how to set size of points in viz::WCloud

how to set size of points in viz::WCloud Hello, everyone, This is Jane, I am using viz::WCloud to draw a 3D face, and

2017-02-24 15:59:40 -0600 commented answer Does opencv has type cell like matlab that can store several Matrices

Thanks! It works very well!

2017-02-24 15:58:51 -0600 received badge  Scholar (source)
2017-02-23 21:29:45 -0600 asked a question Does opencv has type cell like matlab that can store several Matrices

Hi, I am working on image processing for my thesis and I need process hundreds of images at one time, so I would like to know whether I can store these image mat in one data structure, like cell in matlab, then I can get something like the following:

Cell all_images = cell(1,numofImage); for (int i = 0; i < numofImageļ¼›i++){ Mat img = imread( image(i) ) all_images(i) = img; }

Or does there exists some other ways for me to store several images at one time? By the way, I am using VS2013 with C++. Does anyone who has some idea about it? Thanks! ^0^