Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

I have a pattern recognition problem in which I am trying to convert a PRdatafile containing set of images as its objects, into individual image files. Anybody that knows how to do that?

조회 수: 1 (최근 30일)
this is a part of my code:
a = prnist([0:9],[1]); % Taking the NIST dataset and displaying 10 digits obj = a(1); % Taking first object of the dataset
Now how do I convert this object( which is an image) into an image file. I have to perform certain image processing operations on this image file.
Thanks!

답변 (1개)

Image Analyst
Image Analyst 2013년 11월 28일
If (the badly-named) a is an image array, you can create a file by creating a filename string and then using imwrite:
imwrite(a, fullFileName);
  댓글 수: 2
Gaurav
Gaurav 2013년 11월 28일
Thanks, but imwrite function does not work with prdatafiles. I have tried using it.
Image Analyst
Image Analyst 2013년 11월 28일
Sorry - a was your dataset. Use obj, the image that you pulled out of the data set. I didn't notice it because you didn't properly format your code like this shows you: http://www.mathworks.com/matlabcentral/answers/13205-tutorial-how-to-format-your-question-with-markup. So, now assuming obj is the image, as you seemed to say:
imwrite(obj, fullFileName);

Community Treasure Hunt

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

Start Hunting!

Translated by