Image Histogram is a graphical representation of the gray level distribution in an Image. Follow these steps to make Program for shrinking the range of Gray Level in Image Run Matlab, First window you will get something like below 2. Type "guide" in command window, "GUIDE Quick Start" window will appear 3. Select "Blank GUI … Continue reading Histogram Shrink in Matlab
Program in Assembly to Print Triangle | masm 8086
ORG 100H .MODEL SMALL .STACK 100H .DATA NEWLINE DB 0DH,0AH,'$' ;NEW LINE .CODE FUN PROC MOV CX,5 MOV BX,5 L1: MOV CX,BX L2: CMP CX,0 JZ EXIT MOV DL,1 MOV AH,02H INT 21H LOOP L2 DEC BX LEA DX,NEWLINE MOV AH,09H INT 21H LOOP L1 ENDP EXIT: MOV AH,4CH INT 21H RET
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
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
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 ?
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 16-bit numbers in Assembly – masm 8086
Subtraction of 16-bit numbers in Assembly - masm 8086 TestingSubtraction of 16-bit numbers in Assembly - masm 8086 Testing
Subtraction of 8-bit numbers in Assembly – masm 8086
org 100h .stack 100h .data A DB 40 B DB 20 .code ;Initilization of Data Segment mov ax,@DATA mov DS,ax ; Addition of Two Numbers mov dh,A sub dh,B ;SHR 4 bits mov bl,dh shr bl,4 and bl,0fh cmp bl,9 jle ad add bl,07h ad: add bl,30h mov dl,bl ;function to print ascii of dl … Continue reading Subtraction of 8-bit 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
Descending sort in Assembly – masm 8086
;It is a simple sorting algorithm that ;repeatedly steps through the list to ;be sorted, compares each pair of adjacent ;items and swaps them if they are in the ;wrong order. The pass through the list ;is repeated until no swaps are needed, ;which indicates that the list is sorted. ;Although the algorithm is simple, … Continue reading Descending sort in Assembly – masm 8086

