Rank: 2031 based on 26 downloads (last 30 days) and 4 files submitted
photo

Shripad Kondra

E-mail
Company/University
NBRC
Lat/Long
28.33345031738281, 76.939697265625

Personal Profile:
Professional Interests:
Neuroimaging

 

Watch this Author's files

 

Files Posted by Shripad View all
Updated   File Tags Downloads
(last 30 days)
Comments Rating
29 Sep 2010 Screenshot circular checkerboard reversal pattern The standard pattern stimulus is a high contrast black and white checkerboard Author: Shripad Kondra checkerboard vep radi... 10 0
22 Aug 2008 Screenshot Cropping an Image with resizable and draggable rectangle Crops the Image from a resizable and draggable rectangle & displays it (after the figure is closed) Author: Shripad Kondra application, crop, cropping, image, resizable, draggable 5 2
24 Apr 2008 Cropping an Image with draggable rectangle Crops the Image from a draggable rectangle & displays it (after the figure is closed) Author: Shripad Kondra draggable rectangle, image, cropping, crop, application, image processing 10 5
  • 4.0
4.0 | 1 rating
23 Apr 2008 Screenshot Tri-hedral Junctions using lookup table finds the trihedral junctions from the binary edge map Author: Shripad Kondra morphology, segmentation, trihedral junctions, lookup, binary edge, map 1 0
Comments and Ratings by Shripad View all
Updated File Comments Rating
19 Aug 2011 h-index Computes the h-index of an author from Google Scholar. Author: Frederic Moisy

Very Good, Thanks !

20 May 2011 DTI and Fiber Tracking Diffusion MRI (DTI), calculates FA, ADC, Vector Field, and will track and visualize neural tracts. Author: Dirk-Jan Kroon
27 Nov 2009 ordfilt3 Performs 3D order-statistic filtering on 3D volumetric data. Author: Toby Collins

Thanks !

Comments and Ratings on Shripad's Files View all
Updated File Comment by Comments Rating
22 Jul 2009 Cropping an Image with draggable rectangle Crops the Image from a draggable rectangle & displays it (after the figure is closed) Author: Shripad Kondra hima

heyy i have executed this code bit im geting errors at 'imrect' and so i have tried with 'impositionrect' then also im geting error undefined function.in the same way the function 'iptgetapi'...please help me

25 Aug 2008 Cropping an Image with resizable and draggable rectangle Crops the Image from a resizable and draggable rectangle & displays it (after the figure is closed) Author: Shripad Kondra Kondra, Shripad

Ciao Carlos, My previous submission used some functions from image processing toolbox and this one not. If possible I will try to update my previous submission.

22 Aug 2008 Cropping an Image with resizable and draggable rectangle Crops the Image from a resizable and draggable rectangle & displays it (after the figure is closed) Author: Shripad Kondra Vargas Aguilera, Carlos Adrian

Why not just update your previous submition, Shripad?

09 Apr 2008 Cropping an Image with draggable rectangle Crops the Image from a draggable rectangle & displays it (after the figure is closed) Author: Shripad Kondra H, Erion

Can you add a feature to change the size of the rectange on the figure rather than having it fixed?

14 Dec 2007 Cropping an Image with draggable rectangle Crops the Image from a draggable rectangle & displays it (after the figure is closed) Author: Shripad Kondra Kondra, Shripad

Here is a more smaller code which returns the cropped Image and its coordinates

function [O I_crop] = Crop_it(I,w,h)
% Crops the Image from a fixed draggable rectangle
% & returns the Cropped Image and its co-ordinates
%
% I is the Image to be cropped assumed to be in the
% matlab workspace
%
% h : width (default value : cols/2)
% w : height (default value : rows/2)
%
% EXAMPLES
%
% I = imread('circuit.tif');
% Crop_it(I);
%
% I = imread('circuit.tif');
% [O I_crop]=Crop_it(I,100,100);

% $date 08-Nov-2007

if nargin~=3
    [r c unused] = size(I);
    w=round(r/2);
    h=round(c/2);
end

figure, imshow(I);
% h = imrect(gca, [1 1 h w]);
h = impositionrect(gca, [1 1 h w]); % for older version of IP toolbox
api = iptgetapi(h);
waitfor(h);
I_crop = imcrop(I,floor(api.getPosition())-1);
O = api.getPosition();
% figure, imshow(I_crop); %uncomment to plot

Top Tags Applied by Shripad
image, application, crop, cropping, binary edge
Files Tagged by Shripad View all
Updated   File Tags Downloads
(last 30 days)
Comments Rating
29 Sep 2010 Screenshot circular checkerboard reversal pattern The standard pattern stimulus is a high contrast black and white checkerboard Author: Shripad Kondra checkerboard vep radi... 10 0
22 Aug 2008 Screenshot Cropping an Image with resizable and draggable rectangle Crops the Image from a resizable and draggable rectangle & displays it (after the figure is closed) Author: Shripad Kondra application, crop, cropping, image, resizable, draggable 5 2
24 Apr 2008 Cropping an Image with draggable rectangle Crops the Image from a draggable rectangle & displays it (after the figure is closed) Author: Shripad Kondra draggable rectangle, image, cropping, crop, application, image processing 10 5
  • 4.0
4.0 | 1 rating
23 Apr 2008 Screenshot Tri-hedral Junctions using lookup table finds the trihedral junctions from the binary edge map Author: Shripad Kondra morphology, segmentation, trihedral junctions, lookup, binary edge, map 1 0
23 Dec 2004 google Shortcut for web searching using Google's different search areas (images, groups, etc.). Author: Fahad Al Mahmood google, web, url, search engine, news, images 13 1
  • 5.0
5.0 | 3 ratings

Contact us at files@mathworks.com