How do i store/ concatenate 100 images Histograms in one variable?

12 views (last 30 days)
i have written a code to find Euclidean distance between two images. I use two variable N, M to store two images. Now i wonder if i do this for 100 images. How do i concatenate or store 100 images histogram in one variable?

Accepted Answer

Walter Roberson
Walter Roberson on 8 Jan 2016
CurrentFile = ... something constructed from FileCounter....
CurrentImage = imread(CurrentFile);
h(FileCounter,:) = imhist(CurrentImage);
  4 Comments

Sign in to comment.

More Answers (0)

Tags

No tags entered yet.

Community Treasure Hunt

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

Start Hunting!