Skip to content

rinki447/Object_Pair_Relationship_detection

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Getting relationship between detected object pairs in frames of videos

This project aims to detect relationships like looking_at/sitting_on/in_front_of between two objects in frames of a video. So we need to have the list of detected objects and their coordinates in all frames of the videos. Also, we need the extracted ROI features of the objects saved in a .npz file. Some of our codes are taken from the repository https://github.com/sayaknag/unbiasedsgg?tab=readme-ov-file

Requirements

  • python=3.6
  • pytorch=1.1
  • scipy=1.1.0
  • cypthon
  • dill
  • easydict
  • h5py
  • opencv
  • pandas
  • tqdm
  • yaml

Contents

The file Relation.py has main function, where relationships between pair objects are generated.

Before running this file, download other folders in this repository , e.g., dataloader, fasterRCNN and lib folder, where required .py files are saved.

Inference

Finally run this line:

python Relation.py -mode predcls -datasize large -data_path abc  -model_path xyz  -input_dir MNP -original_video_path bcd.txt  -output_dir NMP -rel_mem_compute joint -rel_mem_weight_type simple -mem_fusion late -mem_feat_selection manual  -mem_feat_lambda 0.5  -rel_head gmm -obj_head linear -K 6 

where,

  • original_video_path is the text file where, paths for videos of particular dataset are saved,
  • input_dir is the directory where detected object details for each videos are saved,
  • data_path is the directory where action_genome annotations are saved
  • model_path is the directory where the predcls model is saved from https://drive.google.com/drive/folders/1m1xSUbqBELpogHRl_4J3ED7tlyp3ebv8
  • output_dir is the directory where detected relationships will be saved

organization of data

|--- Video_1
| |--- "npz_fmap.npz"
| |--- Activity_BBox.json
| |--- frame_1
| |--- "npz_file.npz"
| |--- frame_2
| |--- "npz_file.npz"

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published