Problem 818. Change a specific color in an image
The ability to change colors can be a useful tool in image processing. Given an m x n x 3 array (much like CData in images), find all instances of a specific color (c1) and change those pixels to another color (c2). Both colors are inputs to the function. The output is the modified 3D array. If there are no instances of the color to be changed, the output will be the same as the input 3D array.
Assume the class of all colors is double. So, for example, black is [0 0 0] and white is [1 1 1].
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers73
Suggested Problems
-
Is my wife right? Now with even more wrong husband
1323 Solvers
-
295 Solvers
-
Getting the row and column location from a matrix
286 Solvers
-
Find a subset that divides the vector into equal halves
390 Solvers
-
Rounding off numbers to n decimals
4742 Solvers
More from this Author44
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!