Hi all,
When I try to Display a YUV-Image with ImageMagick, using this line:
display -size 1920x1080 -depth 10 -sampling-factor 4:2:2 -interlace plane -colorspace YUV input.yuv 
i get an Image with the wrong colours. But when I use the same line with colorspace RGB it displays my Image perfect.
My question is, why are my YUV- Images only displayed correct when I use the RGB- colorspace? 
Best regards.
			
			
									
						
										
						display YUV Image
- 
				snibgo
 - Posts: 12159
 - Joined: 2010-01-23T23:01:33-07:00
 - Authentication code: 1151
 - Location: England, UK
 
Re: display YUV Image
Your computer monitor is an RGB device, and expects that the values sent to it represent red, green and blue.
			
			
									
						
							snibgo's IM pages: im.snibgo.com
			
						Re: display YUV Image
Ok, thank you 