Computer Graphics Assignment 3- Bvh Viewer Solved

35.00 $

Category:
Click Category Button to View Your Next Assignment | Homework

You'll get a download link with a: zip solution files instantly, after Payment

Securely Powered by: Secure Checkout

Description

5/5 - (1 vote)

  • Only accept answers submitted via git push to this course project for you at https://hconnect.hanyang.ac.kr (<Year>_<Course no.>_<Class code>/<Year>_<Course

no.>_<Student ID>.git).

  • Place your files under the directory structure <Assignment name>/<your files> just like

the following example.

+ 2020_ITE0000_2019000001

+ ClassAssignment1/

–  main.py

–  report.docx

  • The submission time is determined not when the commit is made but when the git push

is made.

 

  1. Implement your own bvh file viewer.
    1. You have to implement all requirements in a single program. This assignment DOES NOT require each requirement to be a separate program
    2. The window size doesn’t need to be (480, 480). Use the larger window that is enough to

see the details of the viewer.

 

  1. Requirements
    1. Manipulate the camera in the same way as in ClassAssignment1 using your

ClassAssignment1 code (10 pts).

  1. Also draw the reference grid plane.

 

  1. Load a bvh file and render it (80 pts)
    1. Open a bvh file by drag-and-drop to your bvh viewer window (10 pts)
  2. Google glfwSetDropCallback to see how to do it
  3. The viewer should render only one bvh file at a time. If a bvh file B is drag-anddropped to the viewer while it is rendering another bvh file A, the viewer should

only render the new bvh file B.

  1. This feature is essential for scoring your assignment, so if not implemented,

you won’t get any score for “Load a bvh file and render it (80 pts)”

  1. Read the bvh file and render the “skeleton” (t-pose) of the motion when you load the file by drag-and-drop (30 pts).
    1. Do not automatically animate the character. Just draw its skeleton (t-pose) when

you open a file.

  1. Just draw joints with offsets between them only using the HIERARCHY section of

the bvh file.

  1. In other words, draw a pose of the motion with zero translation (0,0,0) and no rotation (identity matrix) being applied to transitional joints and rotational joints,

respectively.

  1. Draw the skeleton by line segments. Each line segment should connect each pair

of parent-child joints.

  1. For end-effector joints such as foot, a line segmented should connect the end-

effector joint and the “end site”.

  1. An example screenshot for sample-walk.bvh
  • Animate the loaded motion if you press the <spacebar> key (30 pts).
    1. As time goes by, draw each pose of the motion using each line of frame data in

the MOTION of the bvh file, from the start frame to the end frame.

  1. Calling glfw.swap_interval(1) in your main function, then just drawing the pose of each frame for each iteration of the main loop (the while loop in the main function)

would be enough for timing of rendering each pose.

  1. After drawing the last frame, just replay the motion again (draw from the first

frame to the last frame again).

  1. Example screenshots for sample-walk.bvh

 

  1. When open a bvh file, print out the following information of the bvh file to stdout

(console) (10 pts)

  1. File name
  2. Number of frames
  3. FPS (which is 1/FrameTime)
  4. Number of joints (including root)
  5. List of all joint names

 

  1. Report (10 pts)
    1. Submit a report of at most 2 pages in docx file format (MS Word). Do not exceed the

limit.

  1. The report should include:
    1. Which requirements you implemented (5 pts) ii.A few screenshot images of your program with downloaded bvh files (5 pts)
      1. Download bvh files from the Internet and open them with your viewer. You may download bvh files from
        1. http://motion.hahasoha.net/
        2. http://mocap.cs.sfu.ca/
        3. http://dancedb.eu/main/performances
      2. Choose some of the best looking screenshot images of your viewer.
      3. Do not use the sample bvh files for this requirement. You must use other bvh files downloaded from internet to get score for this requirement.
    2. You do not need to try to write a long report. Just write down the required information.

Use either English or Korean.

 

  1. Extra credits (Only one of two items A, B will be reflected in the score)
    1. Use a box to draw each body part instead of a line segment (+10 pts).
      1. The boxes should be rendered with proper shading and lighting settings.
      2. If you render the body parts without lighting and shading, you cannot get the score

for this item.

  • You can implement this requirement for only one of the sample bvh files provided.
  1. An example screenshot for sample-walk.bvh
    1. (You don’t need to draw the shadow and shaded ground plane)
  2. Use different obj files to draw each body part instead of a line segment (+20 pts).
    1. The meshes should be rendered with proper shading and lighting settings.
    2. If you render the body parts without lighting and shading, you cannot get the score

for this item.

  • You can implement this requirement for only one of the sample bvh files provided.
  1. Example screenshots (not for sample-walk.bvh)
    1. (You don’t need to draw the shadow and shaded ground plane)
    2. Search and download cool obj files from the internet and use them.
      1. If you use simple obj files like box shapes, you’ll only get 10 pts.

 

  1. Runtime Environment
    1. Your program should be able to run on systems only with Python 3.7 or later, NumPy,

PyOpenGL, glfw. Do not use any other additional python modules.

  1. Only glfw is allowed for event processing and window & OpenGL context management. Do not use glut functions for this purpose.
  2. If your program does not meet this requirement, it will not run on TA’s computer so

you will not get any score for this assignment (except report).

 

  1. Test your viewer with sample bvh files. sample-walk.bvh: A walking motion file
  2. sample-spin.bvh: A walking while spinning around a vertical axis

 

  1. What you have to submit:
    1. .py files
      1. You can use multiple .py files for this assignment. In this case, explain how to run the

program in the report.

  1. .docx report file

 

  1. Additional information
    1. drop_callback in glfw python binding is slightly different from that of original glfw written in C. drop_callback in python takes only two parameters, window and paths. paths is a list

of dropped file paths.

  1. Python provides powerful string methods helpful for parsing a bvh file. Among them, split() will be most useful.
  • ClassAssignment3-gklpdo.zip