Resizing images by inbuilt commands and our own matlab program

Поділитися
Вставка
  • Опубліковано 19 січ 2025

КОМЕНТАРІ • 44

  • @hamza_nadeem
    @hamza_nadeem 4 роки тому +1

    I read some comments where were people complaining about getting 3 images, this is due to they are resizing RGB image while the code is for gray-scale images

  • @mohanm9911
    @mohanm9911 6 років тому

    Good voice quality....gud wrk...

  • @kinderlandkanpur
    @kinderlandkanpur  10 років тому

    @Sourav Mishra: The c matrix is a double one when we assign construct it using zeros(). U can check the type of the variable by whos or in the variable details

  • @PRAD61
    @PRAD61 10 років тому +2

    great videos.. Big fan!

  • @souravmishra5828
    @souravmishra5828 10 років тому +2

    why is c/255 required when we have assigned elements of a directly to elements of c.
    so both a and c are expected to be of uint8 type.

  • @soumiksarkar6034
    @soumiksarkar6034 5 років тому

    awesome content. Thanks a lot. It worked.

  • @harshithareddy8986
    @harshithareddy8986 8 років тому +2

    hello rashi , Great information from your videos :)
    In the 14th line we take c/255 for imshow()
    why dont we take c/255 for imagesc()

  • @Mohammad2k24
    @Mohammad2k24 7 років тому

    Great Video *******
    Ma'am please share videos related to the topics
    1. detecting human in image and videos
    detecting parts of human body in images and videos
    Waiting for your response

  • @waheedullah8990
    @waheedullah8990 9 років тому +6

    Your all videos are really helpful, but I have a suggestion for you sister that you should ZOOM IN the code area, so it would be more clear for us. Thanks

  • @akashbhowmick6853
    @akashbhowmick6853 9 років тому +2

    shows an error in line four stating"size input must be integers '

  • @kinderlandkanpur
    @kinderlandkanpur  11 років тому +2

    14th line is simply: figure,imshow(c/255)

    • @alexmagidovich3499
      @alexmagidovich3499 10 років тому

      hi rashi, first of all thank you for the video it helps a lot. i used your code to resize my pic but i dont understand why do i get the photo 3 times in one figure
      here is my code :
      l=imread('dani_smartphone2.jpg');
      [rows,columns]=size(l);
      i=1; j=1;
      c=zeros(rows/2,columns/2);
      for x=1:2:rows
      for y=1:2:columns
      c(i,j)=l(x,y);
      j=j+1;
      end
      i=i+1;
      j=1;
      end
      figure,imshow(c/255);
      colormap(gray);

  • @monkeith5705
    @monkeith5705 8 років тому

    Just asking, can imresize be used in zooming (zero order hold method)? Btw your videos are really helpful. New subscriber here :))

  • @MustafaMKS
    @MustafaMKS 9 років тому

    great job, but i hope to make a video about, how to draw on a image, like draw a line, circle or triangle on a image, (big like)

  • @bhaveshshah9487
    @bhaveshshah9487 7 років тому

    hi. thank you for the videos!! how to shrink the image by a factor of 10 ?

  • @deekshagowda-vd8ff
    @deekshagowda-vd8ff 6 років тому

    Which algorithm used in this program?

  • @ImtiazKhan92
    @ImtiazKhan92 10 років тому +1

    Thank you so much :) you are awesome

  • @sudeepnaik4686
    @sudeepnaik4686 10 років тому

    Hi,
    when the image pixel size is doubled or increased., so we will need to add something in between so what does it add at the position in between,.

    • @hundaeece5763
      @hundaeece5763 8 років тому

      I think Matlab uses zero order hold resizing, so if you resized the image up to scale 4 in both directions, each pixel will be replicated 16 times in a completed square ( new large pixel ).

  • @khalid_kk2007
    @khalid_kk2007 10 років тому +1

    why my figure is showing 3 replica of same image of output figure ?

    • @thimvaichaw5108
      @thimvaichaw5108 9 років тому

      how you solve you 3 replica of same image? i also have the same problem. Can you let me know your solution?

  • @helenahmed1166
    @helenahmed1166 9 років тому +1

    Hi,
    Can you explaine the for loop , please ?

  • @mahaveer1993
    @mahaveer1993 9 років тому

    Hello mam, Can i know how to size image by bilinear interpolation??

  • @sameersawant8733
    @sameersawant8733 10 років тому

    hiii mam i had a question :
    i want to get matrix data of an image .
    how we get this data

  • @MsMaano0
    @MsMaano0 11 років тому +1

    kindly write me the code of 14th line, i cant see it! please

  • @snehashisjha4694
    @snehashisjha4694 11 років тому

    can u show how to use BLOCKPROC function in order to process a subblock of an image?

  • @amangupta8137
    @amangupta8137 6 років тому

    As you haven't applied jet colormap on the image its simply an grayscale image then why you are using grayscale colormap....??

  • @anshumadan8082
    @anshumadan8082 11 років тому

    Hello
    Grettings..
    Here anshul madan and i just want a bit map for the monochrome images..
    so can i do using matlab..?
    help me..
    Thank you

    • @kinderlandkanpur
      @kinderlandkanpur  11 років тому

      you want a colormap ie. the values of all bits in the image?

  • @zerodefenderX
    @zerodefenderX 10 років тому +1

    c = a (1:2:N, 1:2:M, : );
    I believe this line would make the same as all the for loops

  • @mubinkhan1740
    @mubinkhan1740 5 років тому

    mam whats the need of creating zero matrix

  • @Uiuuyyy
    @Uiuuyyy 8 років тому

    dear Miss rashi can you provide a code in which we can enhance a low resolution image to high resolution without loosing its quality. I shall be extremely thankful

  • @swapnanildas
    @swapnanildas 6 років тому

    can i get the .pdf extension files of your slides?

  • @rachitmaheshwari2129
    @rachitmaheshwari2129 7 років тому

    i am getting 3 images in subsize imageof same type

  • @sachinkv6854
    @sachinkv6854 5 років тому

    How to resize colour image

  • @ajijuliana7042
    @ajijuliana7042 10 років тому

    I need sample for button gui matlab

  • @kinderlandkanpur
    @kinderlandkanpur  11 років тому

    thanks!

  • @da7oo0oome2000
    @da7oo0oome2000 11 років тому

    helpful :)