Lab Chromameter (CR-410) SOP
Submitted by dylan on Wed, 2007-10-03 22:24.
Notes
- There is an excellent manual, stored behind the blue foam in the lid of the case.
- If you need to keep track of date/time, be sure to install batteries in the sensor head, and then set the time-- you will need to use the software to do this.
- When working with dusty material it is a good idea to do regular checks, as the light source will get progressively obscured. Consider using the granular materials attachment.
- Use an indirect blast of compressed air to clean the color sensor / illuminant window after every sample.
Calibration of the CR-410
- power on the unit, and press the 'Cal' button
- place the unit on the white standard calibration tile
- verify the values on screen match the "C" light standard values listed on the calibration tile case
- press the measurement trigger button
- the unit will take three samples, and will enter measurement mode
Downloading data from the sensor head
- with the sensor head turned off, plug in serial cable
- power on the unit, then immediately press the 'enter' key
- optionally adjust the 'baudrate' to 19200
- move the cursor to 'PC Mode', and press the 'enter' key
- open the ut400.exe application
- optionally adjust connection settings, then click on the connect button.
- Set an output target (use a text file).
- Click on the 'Intrument...' button, and then choose the 'Upload' option.
- Upload the data (instrument to computer)
- click on 'Save As' in the text output window, and save the results to a file.
- The data should be saved in XYZ colorspace
- you can optionally delete the data from the sensor head, using the ut400.exe application
Downloading data from the data processing unit.
- Transfer data from sensor head to data processing unit (this erases the data from the sensor head). This is done by connecting the two units and then importing data from the sensor head
- press 'Option'
- select 'Import'
- select 'NEW'
- press 'Enter'
- Attach data processing unit (DPU) to serial port and open ut400.exe
- Set the DPU to 'remote mode' by first pressing the 'index set' button and scrolling down to this setting.
- Connect cable to DPU, and click on the connect button.
- Set an output target (use a text file for maximum compatibility).
- Click on the 'Intrument...' button, and then choose the 'Upload' option.
- Upload the data, note that if there are several sets of data on the device (pages) you must select the appropriate page first.
- click on 'Save As' in the text output window, and save the results to a file.
- The data should be saved in XYZ colorspace
Notes for non-Windows Users
If you are using wine, you will need to:
- configure the serial port (http://www.winehq.com/site/docs/wineusr-guide/misc-things-to-configure#AEN408)
- copy msvcirt.dll from a working windows install in the windows/system32/ folder in your wine home directory
- Start the program with wine:
wine ~/.wine/drive_c/Program\ Files/Minolta/CR-400\ Utility/ut400.exe
Chromameter Soil Colors in XYZ (see below)
Processing in R:
# example processing:
# note that the row name corresponds to the sample_id
require(colorspace)
x <- read.csv('data_dump_4-7-2007.csv', header=FALSE)
c <- data.frame(id=x$V1, X=x$V2, Y=x$V3, Z=x$V4)
# cast to XYZ object
c.xyz <- XYZ(c$X, c$Y, c$Z)
# plot colors in XYZ colorspace
plot( c.xyz, cex=1.5)
Other examples of processing color data in R
Related Literature
|