I have a set of frames in which different animals are visible. I have annotated them using CVAT's polygon feature. Now, all I need to do is cropping the annotation part and extracting the features as a CSV file.
I can extract the features using VGG16 in MATLAB using a code like below:
net = vgg16;
I = imread('myImage.jpg');
featureMap = activations(net, I, 'pool5');
disp(featureMap);
As I want to use my data in Weka, and I want to get rid of image files and I want to train my algorithm using the features. The algorithms that I want to use are Decision Tree, SVM and RCNN.
How can I crop the annotated part in CVAT? and How can I get my features as a CSV file?