How to Seperate Channels in Color Image in Matlab

The human visual system can perceive thousands of colors in a small spatial area, but only about 100 gray levels. Color contrast can be more dramatic than gray level contrast, and various colors have different degrees of psychological impact on the observer.  A subset of Physical images (Color Images) is multi-spectral images-those having more than one … Continue reading How to Seperate Channels in Color Image in Matlab

How to find Negative of Image in Matlab

How to find Negative of Image in Matlab

A negative is an image in which the lightest areas of the photographed subject appear darkest and the darkest areas appear lightest. This reversed order occurs because the extremely light-sensitive chemicals a camera film must use to capture an image quickly enough for ordinary picture-taking are darkened. Basically, In the Negative image, we subtract each … Continue reading How to find Negative of Image in Matlab

How to convert color image to binary image in Matlab

How to convert color image to binary image in Matlab

Digital Computers are being applied to the variety of applications because they can be programmed to handle almost any computational problem. Computer Imaging deals with interpreting images in a useful image, that is actually application dependent. A subset of Physical images (Color Images) is multi-spectral images-those having more than one local property defined at each point … Continue reading How to convert color image to binary image in Matlab

How to convert Color Image to gray level Image in Matlab ?

How to convert Color Image to gray level Image in Matlab ?

Digital Computers are being applied to the variety of applications because they can be programmed to handle almost any computational problem. Computer Imaging deals with interpreting images in a useful image, that is actually application dependent. A subset of Physical images (Color Images) is multi-spectral images-those having more than one local property defined at each point … Continue reading How to convert Color Image to gray level Image in Matlab ?

Subtraction of 8-bit BCD numbers in Assembly – masm 8086

Subtraction of 8-bit BCD numbers in Assembly – masm 8086

org 100h .model small .data A DB 34 B DB 17 .code ;Initilize data segment mov ax,@DATA mov DS,ax mov al,a sub al,b ; converting hex to decimal by diving A mov ah,00h mov bh,0Ah div bh ; Quotiont mov cx,ax mov dl,cl add dl,30h mov ah,02h int 21h ;remainder mov dl,ch add dl,30h mov … Continue reading Subtraction of 8-bit BCD numbers in Assembly – masm 8086