Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9265609
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T14:06:45+00:00 2026-06-18T14:06:45+00:00

I load images in matlab and work with them as double matrices. Now I

  • 0

I load images in matlab and work with them as double matrices.

Now I want to extract the data values across a straight line from one point of the image to another. This line however does not equal to a column or row (that would be easy).

How can I do that with matlab?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T14:06:47+00:00Added an answer on June 18, 2026 at 2:06 pm

    A line obeys the eq of the line y=a*x+b. Here x and y are coordiantes of the image. So if you want a line defined by two points (x1,y1) -> (x2,y2), the slope a is (y2-y1)/(x2-x1) and b=y1-a*x1. So next , select points in the matrix the obey the eq of the line as follows:

    Create data and end points:

    m=peaks(50);
    x1=5 ; x2=42;
    y1=21; y2=29;
    

    calculate ew of line parameters:

    a=(y2-y1)/(x2-x1);
    b=y1-a*x1;
    

    define the line:

    x=x1:x2;
    y=round(a*x+b);
    

    select the proper matrix elements using linear indexing:

    ind=sub2ind(size(m),y,x)
    

    plot:

    subplot(2,1,1)
    imagesc(m); hold on
    colormap(bone)
    line([x1 x2],[y1 y2],'Color',[1 0 0]);
    
    subplot(2,1,2)
    plot(m(ind))
    

    enter image description here

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to dynamically load images from a database withing a PrimeFaces data table.
I want to load images from a URL and then assign them as background
I'd like to load images from json data which contains the url to these
Because I want to do things like load images from the web (see this
This is my current demo .I am trying to load images dynamically and now
I have a class ImageBean and I want to use it to load images
I want to load images from my server to an image gallery. The problem
I need to load an array of images in Javascript, but I want to
I need to load images within my Flash project I don't want to use
I want to load images in a grid view using lazy loading. I have

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.