Posts

Showing posts from September 25, 2020

New Post

Algorithms Behind Space Missions ~xRay Pixy

Image
Learn different algorithms used in Space Missions. Video Link Video Chapters: Algorithms Behind Space Missions 00:00 Introduction 00:52 Space Missions 04:26 Space Missions Challenges 07:04 Algorithms Used in Space Missions 10:36 Optimization Techniques 11:44 Conclusion  NASA conducts space missions to explore the universe for various scientific, technological, and practical reasons: Understanding Our Place in the Universe Search for Life Beyond Earth Studying Earth from Space Advancing Technology Supporting Human Exploration Resource Utilization Inspiring Humanity Examples of NASA Space Missions Apollo Program: Sent humans to the Moon (1969–1972). Mars Rovers (Spirit, Opportunity, Perseverance): Explored Mars' surface and geology. Voyager Missions: Studied the outer planets and interstellar space. Hubble Space Telescope: Captured breathtaking images of the universe. International Space Station (ISS): Supports research in microgravity and international collaboration. Different ...

Viewing Pipeline - 2 Dimensional Viewing in Computer Graphics

Image
 Viewing Pipeline: Viewing Transformation in several steps: 1. Modeling Coordinates 2. World Coordinate System 3. Clipping Window 4. Normalize - Normalized Coordinates  5. Device Coordinate  6. ViewPort 7. Clipping First, we construct the scene in the world coordinates using the output primitives. Next, obtain a particular orientation for the window, we can set up a 2D viewing coordinate plane and define windows in the viewing coordinate system. The viewing coordinate reference frame is used to provide a method for setting up arbitrary orientations for a rectangular window.  Once the viewing reference frame is established. we can transform description in the world coordinate to viewing coordinates. After that define a viewport in normalized coordinates ( in the range from 0 to 1). 2D Viewing Pipeline can be achieved by the following steps:  1. Construct world coordinate scene using modeling coordinate transformation.  2. convert world coordinates to viewin...
More posts