colorpicker

버전 1.0.0.0 (5.33 KB) 작성자: Chad Greene
Get RGB values of any point(s) on a figure from mouse click(s)
다운로드 수: 738
업데이트 날짜: 2015/10/23

라이선스 보기

colorpicker gets RGB values from mouse clicks anywhere on a figure. Press
Return to exit.

% Syntax
colorpicker
colorpicker(256)
colorpicker(...,TextProperty,TextValue)
RGB = colorpicker(...)
[R,G,B] = colorpicker(...)

% Description
colorpicker gets RGB values of anywhere you click on the current figure.
Values are temporarily printed at the location of the click until you
click somewhere else or press Return to exit.

colorpicker(256) scales values from 0 to 256 rather than the Matlab
default method of scaling from 0 to 1.

colorpicker(...,TextProperty,TextValue) specifies text formatting for the
temporary RGB labels.

RGB = colorpicker(...) returns RGB values of all clicks while the color
picker is open. If only one output is requested, RGB values a an N-by-3
array, where N is the number of clicks.

[R,G,B] = colorpicker(...) returns RGB values as three individual N-by-1
arrays. I'm not sure when you'd ever need this, but it's certainly an
option.

% Example 1: Open a figure and start clicking around to get RGB values:

imagesc(peaks)
colorpicker

% Example 2: Do the same as above, but specify label format:
imagesc(peaks)
colorpicker('fontweight','bold','color','r')

% Example 3: Get 8 bit integer values:
imagesc(peaks)
colorpicker(256)

% Example 4: Return an N-by-3 array of RGB values, where N is the number of times you click:
imagesc(peaks)
rgb = colorpicker;

% Example 5: Get individual R, G, and B arrays scaled from 0 to 255 and specify label formatting:
imagesc(peaks)
[r,g,b] = colorpicker(256,'fontangle','italic',...
'fontsize',30,'backgroundcolor','w');

인용 양식

Chad Greene (2024). colorpicker (https://www.mathworks.com/matlabcentral/fileexchange/53656-colorpicker), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2012b
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Entering Commands에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.0.0.0