フィルターのクリア

solarize

2 ビュー (過去 30 日間)
maha sandhya
maha sandhya 2012 年 2 月 24 日
how to solarize an image in matlab

回答 (1 件)

Bjorn Gustavsson
Bjorn Gustavsson 2012 年 2 月 24 日
Then it should just be to generate the gray-level (or separate R, G and B level) mappings that take you from 0-1 to 0-1.
qdSolarize = @(Igray) (1-0.7*sin((0.2+linspace(0,0.8,1001)*pi)).^8)
Isolarized = qdSolarize(I);
You'd have to fidget around with the mapping till you get whatever you want.
HTH.

カテゴリ

Help Center および File ExchangeSolar Power についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by