si tengo una matriz de tipo CV_32SC1, que tipo nombre shuld utilizo en la función Mat :: at?Acceso matriz opencv CV_32S elemento
p. Ej.
Mat X; // for example eye matrix of size 10,10,and type CV_32SC1
X.at<??????>(1,1)=5;
- ¿Cómo puedo encontrar el nombre de tipo para otros tipos de matriz?
Por favor, realmente [lea] (http://stackoverflow.com/review-beta/suggested-edits/780994) las revisiones que está haciendo clic aprueban. –
En este caso preferiría a , ya que el estándar de C++ no especifica el tamaño de bit de los tipos integrales. –
No hay ningún tipo de CV_32U *. Sin embargo, puede usar 'X.at (i, j)' si su matriz CV_32SC1 realmente contiene valores sin firmar. –
greggo