Recent content by Avatrin

  1. Avatrin

    A Numerically solving matrix Riccati ODE

    Well, I've already skimmed through that one. It is about the algebraic Riccati equation, and does mention that it can be applied to the differential Riccati equation. However, I just don't know how. So, my best idea at the moment is just to use Euler's method. However, I wish I could find out...
  2. Avatrin

    A Numerically solving matrix Riccati ODE

    Hi I need to solve an equation of the form $$\dot{X}(t) = FX(t) + X(t)F^T + B$$ All of these are matrices. I have an initial condition X(0)=X_0. However, I have no idea how to proceed. How can I make any progress?
  3. Avatrin

    Book that goes deep into the basics of statistics

    Okay, thanks to both of you! I'll read through those books to see if they help. But, no, currently my interest is not specifically Kalman filtering; It's more the foundations I need to understand Kalman filtering. In other words, I want to understand the first few chapters of any book on the...
  4. Avatrin

    Book that goes deep into the basics of statistics

    Currently, I am using Brown and Hwangs Random Signals and Applied Kalman Filtering. My background is mathematical; I have encountered measure theory in the context of integration theory. Moreover, I have taken courses in analysis and topology. Statistics and probability theory is something I...
  5. Avatrin

    Book that goes deep into the basics of statistics

    Summary:: Random processes, autocovariance, ergodicity, Gauss-Markov etc Hi I am a person who resolutely prefers depth over breadth, and currently I am trying to learn more about random signals and Kalman filtering. However, the books I have found so far will mention and superficially...
  6. Avatrin

    Python Differences between Pillow and Pyplot in turning an array into an image

    Okay, here's what I do; I stary with noisy_image as described above. I use it with LIC to visualize a vector field and the output is output_image, which, yes, is an array containing floating point numbers between 0.0 and 1.0. Using this with figimage does give me the correct output in my...
  7. Avatrin

    Python Differences between Pillow and Pyplot in turning an array into an image

    Hmm, this actually didn't work. This is my current output having turned each element in my array to an integer: However, I am not opening any image; I am just doing this: img = Image.fromarray(np.array(output_image), 'LA') img.save('pillowwithint.png') The reason for this is that LIC starts...
  8. Avatrin

    Python Differences between Pillow and Pyplot in turning an array into an image

    Thank you! That makes a lot of sense. I guess I should try using int(floor(element*256)) for each element in the array to see if it gives me the output I want. Regarding the parameters. Yeah, figimage takes a lot more parameteres than I show, but I was alright with the default values (for...
  9. Avatrin

    Python Differences between Pillow and Pyplot in turning an array into an image

    The other day I was trying to visualize a field using line integral convolution. I thought I kept failing for days since Pillow was giving me outputs similar to this one (img = Image.fromarray(output_image, 'L')): I thought I was making some mistake until I tried Pyplot...
  10. Avatrin

    Python Creating noise images with Python and OpenGL

    Those clearly use pillow... I am specifically asking for how to do this with OpenGL.
  11. Avatrin

    Python Creating noise images with Python and OpenGL

    Alright, but this doesn't output an image. That's why I am asking for a tutorial or a book; I am not sure a forum post is going to tell me how to create images with OpenGL.
  12. Avatrin

    Python Creating noise images with Python and OpenGL

    Hi I am learning how to do a line integral convolution with OpenGL given a vector field. So, as a first step, I need to learn how to create an nxn noise image. Are there any good tutorials/books I can use to learn how to do this?
  13. Avatrin

    How Can I Learn Seeding and Visualization Techniques for Vector Fields?

    But, he doesn't really write about visualization, though... He seems to write entirely about pure mathematics and some physics. That doesn't help me in learning specific techniques to visualize vector fields.
  14. Avatrin

    How Can I Learn Seeding and Visualization Techniques for Vector Fields?

    I downloaded the paper on Line Integral Convolution and also a few others, but I think a more introductory text might be helpful to grasp certain aspects since research papers assume more domain knowledge than what I currently have. YouTube hasn't been helpful, since any search with the word...
  15. Avatrin

    How Can I Learn Seeding and Visualization Techniques for Vector Fields?

    Summary:: Seeding and visualization techniques Hi I am looking for resources where I can learn the following: Seeding strategies and algorithms for vector fields (texture-based, geometry, topological) Different techniques for visualizing vector fields (streamlines, glyph-based, LIC etc)
Back
Top