[Closed] Color Correction Map
Hello everybody, I am a newby. I would like to implement a plugins or maxscript plugin to make a color correction for bitmap or other type of map. However, i am very very new and i dont know where to start. I tried to start doing it with MAX SDK however i didnt find too many resource and help about it so i prefered to do it with max script because i found more help about it. Please i will be very grateful if anyone could give me some advices and guides.
I have already started to write few lines of codes, it is just a script and not a script plugins. Please read the code and tell me how i can fix some problem with it. One of them (problem #1) is about keeping the aspect ratio of the opened bitmap, and the other one it is related with print (problem #2).
Also, I would like to know if there is a way to optimize the memory use such as freeSceneBitmap() or something like that to free the memory used by the loaded bitmaps.
Thank very much in advance,
[size=2]Regards [/size]
[size=2]ting[/size]
[size=2][/size]
(
fn histogram bitmap =
(
)
rollout preview "Preview" width:310 height:209
(
bitmap bmp2 "Bitmap" pos:[5,30] width:145 height:145 bitmap:(bitmap 145 145 color:gray)
bitmap bmp3 "Bitmap" pos:[155,30] width:145 height:145 bitmap:(bitmap 145 145 color:gray)
button btn "Image" pos:[155,181] width:143 height:21
label lbl3 "Before:" pos:[5,11] width:144 height:19
label lbl4 "After:" pos:[161,11] width:144 height:19
on btn pressed do
(
freeSceneBitmaps()
--bml = undefined
bml = selectBitMap()
--temp = bitmap 145 145 color: black
temp = undefined
if bml != undefined then
(
/*
--Problem #1
if bml.width > 145 then
(
print "Bigger 1"
local w = 145
local h = 145*(bml.width/bml.height)
)
else
(
print "Bigger 2"
w = 145/(bml.width/bml.height)
h = 145
)
temp = bitmap w h
*/
temp = bitmap 145 145
copy(bml) temp
bmp2.bitmap = temp
bmp3.bitmap = temp
)
)
)
rollout system_info "System Info" width:162 height:80
(
local r = sysinfo.getSystemMemoryInfo()
local temp = "percent of memory in use: " + r[1] as string
print temp -- Problem #2
label lbl temp
)
/* Main Part of the Script */
win = newrolloutfloater "FLColor Test" 320 510
--Add The Preview Rollout
addrollout preview win
--Add The System Info
addrollout system_info win
)
[size=2]
[/size]
Can you explain what exactly do you want to achieve?
MAXScript is probably too slow to do complex bitmap operations, and there is already a ColorCorrect map by Cuneyt Ozdas available for download which might do some of the things you need.
http://www.cuneytozdas.com/software/3dsmax/
http://www.cuneytozdas.com/software/3dsmax/ColorCorrect/help/reference.htm
The SDK would be the right way to go if you intend to do heavy bitmap processing.
MAXScript can be used (if you want to learn and experiment with bitmaps without dealing with the SDK), but might not be practical if you intend to use the resulting tool in a production pipeline.
Hi Bobo, thank very much to reply my post. What, I am trying to do it is exactly the same as colorcorrection, however i would like to do with more user friendly interface. I am doing that just for LOVE. I always wanted to do learn maxscript or maxsdk however i never find an excuse. So one of my friend sugested to me to do an improved color correction. I dont expecto to achieve, but i would like to try to do one by myseld. Also, I would like to excuse my english, because it is a little bit rusty. Also i have some doubt with function in maxscript. I would like to pass as parameter a bitmap to fill it with the result of the histogram but it give me a error and i dont know why. I am trying to do that as reference. But it doesnt work properly.
Thank in advance,
ting
(
global bml = undefined
global hstg_bmp = undefined
rollout preview "Preview" width:310 height:209
(
bitmap bmp2 "Bitmap" pos:[5,30] width:145 height:145 bitmap:(bitmap 145 145 color:gray)
bitmap bmp3 "Bitmap" pos:[155,30] width:145 height:145 bitmap:(bitmap 145 145 color:gray)
button btn "Image" pos:[155,181] width:143 height:21
label lbl3 "Before:" pos:[5,11] width:144 height:19
label lbl4 "After:" pos:[161,11] width:144 height:19
on btn pressed do
(
freeSceneBitmaps()
--bml = undefined
bml = selectBitMap()
--temp = bitmap 145 145 color: black
temp = undefined
if bml != undefined then
(
/*
if bml.width > 145 then
(
print "Bigger 1"
local w = 145
local h = 145*(bml.width/bml.height)
)
else
(
print "Bigger 2"
w = 145/(bml.width/bml.height)
h = 145
)
temp = bitmap w h
*/
temp = bitmap 145 145
copy(bml) temp
bmp2.bitmap = temp
bmp3.bitmap = temp
)
)
)
rollout params "Parameters" width:300 height:400
(
bitmap bmp "Bitmap" pos:[12,26] width:272 height:154 bitmap:(bitmap 272 154 color:[80,80,80])
button btn "Refresh" pos:[176,187] width:106 height:24 enabled:true
GroupBox grp " Histogram" pos:[4,8] width:290 height:211 enabled:true
checkbox chk " Histogram" pos:[10,9] width:11 height:11
fn histogram bmp type =
(
if type == 1 then
(
print "RGB"
temp2 = bitmap 50 50 color:red
copy(temp2) bmp
)
)
on chk changed thestate do
(
--messagebox ("Checkbox state is " + theState as string)
if chk.state == false then
(
grp.enabled = false
bmp.enabled = false
btn.enabled = false
print "Enabled"
)
else(
grp.enabled = true
bmp.enabled = true
btn.enabled = true
print "Enabled"
)
)
on btn pressed do
(
histogram bml 1
)
)
rollout system_info "System Info" width:162 height:80
(
local r = sysinfo.getSystemMemoryInfo()
--local temp = "percent of memory in use: " --+ r[1] as string
label lbl "temp"
-- print "Bigger 2"
-- lbl1.label = temp
)
rollout abouts "About" width:310 height:156
(
label lbl1 "FTColor v0.1 Beta" pos:[110,7] width:89 height:14
label lbl2 "[email="tingspain@gmail.com"]tingspain@gmail.com[/email]" pos:[103,26] width:104 height:17
bitmap bmp1 "Bitmap" width:300 height:100 bitmap:(bitmap 300 100 color:black)
)
/* Main Part of the Script */
win = newrolloutfloater "FLColor Test" 320 510
--Add The Preview Rollout
addrollout preview win
--Add The Parameter Rollout
addrollout params win
--Add The System Info
addrollout system_info win
--Add The About Rollout
addrollout abouts win
)
Ok, how about extending the existing colorcorrect texture – replacing the UI of the map with your own, more user-friendly one, while still using the underlying functionality Cuneyt has explosed in his plug-in?
Of course, you are free to implement your color correction code if you want to learn that part, too… But you should realize you will not be able to create a scripted texture map plug-in that does the same – it will have to stay as a separate tool, unless you decide to use the SDK. (scripted texture map plugins can only extend existing ones, but cannot implement their own shading code!)