PROGRAMMING WORLD
Home
C
C++
JAVA
Swift
ASP.NET
NETWORK
MATLAB
GATE
DOWNLOAD
Write a MATLAB code to crop the portion of the image without using built in function.
00:28:00
DOWNLOAD
,
MATLAB
CODE:
clear
all
;
close
all
;
clc;
a=imread(
'cameraman.tif'
);
x=0;
y=0;
for
n=95:130
x=x+1;
y=0;
for
m=38:73
y=y+1;
b(y,x)=a(m,n);
end
end
imshow(b);
OUTPUT:
Email This
BlogThis!
Share to Twitter
Share to Facebook
Newer Post
Older Post
Home
Social Profiles
Popular
Tags
Blog Archives
Blogger templates
MATLAB CODE TO VERIFY TIME SHIFTING PROPERTY OF DFT
CODE: close all; x=input('Enter the input sequence'); n=input('Enter the delay integer'); x1=length(x); xn=x1+n; ...
Write a program in swift to check the number is palindrome or not.
Code: import UIKit var reversen = 0 var rem = 0 var n = 142 var no = n no=n while n != 0 { rem = n%10 ...
C program for finding binomial distribution Expression.
//C program for finding binomial distribution Expression. #include<stdio.h> #include<conio.h> #include<math.h>...
Write a MATLAB code to perform the contrast stretching on the image. Show the original and stretched image along with their histograms.
CODE: clear all ; close all ; clc; %% Reading an image a=imread( 'cameraman.tif' ); a=double(a); s=size(a); ...
Write a MATLAB code to perform the following gray level transformation and display original image and resultant image.
Write a MATLAB code to perform the following gray level transformation and display original image and resultant image. a. Ide...
MATLAB CODE TO DESIGN A CHEBYSHEV I BANDPASS FILTER
CODE: clear all alphap=2; %passband attenuation in dB alphas=20; %stopband attenuation in dB wp=[.2*pi,.4*pi]; % passband fr...
Write a MATLAB code to perform bit plane slicing operation on the image.
CODE: clear all ; close all ; clc; a=imread( 'cameraman.tif' ); b1=[]; b2=[]; b3=[]; b4=[]; b5=[]; b6=[]...
Write a MATLAB code to perform the zooming and shrinking operation by integer factor.
CODE (FOR ZOOMING): clear all ; close all ; clc; b=imread( 'cameraman.tif' ); s=size(b); c=[]; d=[]; zoom=inpu...
Write a program in swift to check the number is even or odd.
Code: import UIKit var n = 28 // enter your number here if(n%2==0) { print("\(n) is even number.") } ...
Matlab code to verify the adaptive delta modulation
Code: clc clear all; t =0:1/29:1; f=1; x=4*sin(2*pi*f*t); x=[x ones(1,10) x]; y = zeros(1,length(x));...
Categories
C
(10)
C++
(7)
DOWNLOAD
(99)
GATE
(6)
iOS app
(1)
JAVA
(1)
MATLAB
(51)
NETWORK
(16)
pass value
(1)
Swift
(8)
swift 4.0
(1)
swift app
(1)
Search This Blog
Blog Archive
►
2018
(1)
►
September
(1)
►
2017
(3)
►
May
(3)
►
2016
(5)
►
December
(4)
►
November
(1)
▼
2014
(91)
►
October
(16)
►
September
(24)
▼
August
(49)
Wireless Monitoring Tools: Netstumbler, WirlessMon...
Write a MATLAB code to decode all the received wo...
MATLAB code to plot the capacity of band limited A...
implementation of Naive Bayes classifier using excel
GATE 2015
Syllabus for Computer Science and Information Tech...
Pattern of Question Papers for GATE 2015
Good GATE Coaching Institute in india
Structure of GATE
Introduction to GATE
Ad-hoc simulation of tcp htp WITH ns2
Ad-hoc simulation for specified transmission range...
Ad-hoc simulation for wireless network WITH ns2
Ad-hoc simulation WITH ns2
Ad-hoc simulation for drop tail packet WITH ns2
Ad-hoc simulation for diffrential range WITH ns2
Ad-hoc simulation with AOMDV WITH ns2
Ad-hoc simulation with AODV WITH ns2
A 3-node example for ad-hoc simulation with AODV F...
Write a glut program to draw sphere with horizonta...
Write a glut program to draw points in 3D coordina...
Write a glut program to implement animation of s...
Write a glut program to draw rotating sphere
Write a glut program to implement animation of Cube:
Write a glut program to draw a Cone
Write a glut program to draw 3D cube with lighteni...
Some basic commands for image processing in MATLAB
Write a MATLAB code to implement the smoothing and...
Write a MATLAB code for comparative analysis of di...
Write a MATLAB code for comparative analysis of di...
Write a MATLAB code to perform the contrast stretc...
Write a MATLAB code to perform bit plane slicing o...
Write a MATLAB code to perform gray level slicing ...
Write a MATLAB code to find out the histogram of t...
Write a MATLAB code to perform the zooming and shr...
Write a MATLAB code to perform the following gray ...
Write a MATLAB code to make the size of two images...
Write a MATLAB code to rotate the image with (i)90...
Write a MATLAB code to crop the portion of the ima...
Write a MATLAB code to hide the information of the...
write a C code to implement cyclic codes.
write a C code to implement linear block codes
Write a c program to perform Huffman coding.
Write a c program to perform shanon coding.
Write a c program to find the entropy of given pro...
C program for finding binomial distribution Expres...
Program to find sum of two dies if rolled 500 times.
C program for generating random number for user-de...
Ceaser cipher program in c
►
February
(2)