Azzera filtri
Azzera filtri

Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

Am not able to convert set of image coordinates into training set

1 visualizzazione (ultimi 30 giorni)
plz see attachment herewith for my problem.
[Merged from Attachment]
First of all a set of n images I have obtained. This can be represented as the following set.
A=[I1,I2,I3,I4……………….Im].
Each image has a set of coordinates which represent the pictures. Each coordinate is represented by (x,y) pair denoting the position in the image. M represents the number of images in the training set. The matrix is as follow:
But am not able to convert the set of coordinates into a training set, which is represented as follows: Please help for sorting it out…………. thanks
  3 Commenti
Walter Roberson
Walter Roberson il 25 Apr 2016
What data type is your veinmat? Is it a cell array in which each entry is a row vector of two values?
Balaji M. Sontakke
Balaji M. Sontakke il 25 Apr 2016
yes sir, it is a cell array, actually it requires for reducing the variation in the element of the training set and to make it standardize.

Risposte (1)

Walter Roberson
Walter Roberson il 25 Apr 2016
T = zeros(size(veinmat) .* [2 1]);
T(1:2:end,:) = cellfun(@(V) V(1), veinmat);
T(2:2:end,:) = cellfun(@(V) V(2), veinmat);
  3 Commenti

Questa domanda è chiusa.

Community Treasure Hunt

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

Start Hunting!

Translated by