box detection/rectangle detection
7 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Salad Box
il 24 Nov 2021
Commentato: Roger Breton
il 30 Gen 2024
Hi
Here is my sample image. How to automatically grab/crop/know the region of each colour square without using 'get rect' function?
0 Commenti
Risposta accettata
Image Analyst
il 24 Nov 2021
There is a function for this: colorChecker()
Attached is a full demo.
5 Commenti
Roger Breton
il 30 Gen 2024
I tried your "Test.m" code and still got the same error message: "Color patches were not detected."?
% Read in image that has a Color Checker chart in it but that has unknown image capture conditions.
% fileName = 'colorCheckerTestImage.jpg';
fileName = 'CC24 in Scene JPEG.jpg';
rgbImage = imread(fileName);
Più risposte (1)
yanqi liu
il 25 Nov 2021
clc; clear all; close all;
filename = 'https://www.mathworks.com/matlabcentral/answers/uploaded_files/812319/image.jpeg';
img = imread(filename);
% use colorChecker
chart = colorChecker(img);
displayChart(chart)
% use measureColor
[colorTable, ccm] = measureColor(chart);
figure;
displayColorPatch(colorTable); set(gcf, 'units','normalized','position',[0,0,1,1])
colorTable
Vedere anche
Categorie
Scopri di più su Image Segmentation and Analysis in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!