All Projects → makalo → Siamese Rpn Tensorflow

makalo / Siamese Rpn Tensorflow

Licence: mit
An re-implementation for Siamese-RPN with Tensorflow

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Siamese Rpn Tensorflow

Jaeger Openshift
Support for deploying Jaeger into OpenShift
Stars: ✭ 53 (-56.91%)
Mutual labels:  tracing
Aws Serverless Airline Booking
Airline Booking is a sample web application that provides Flight Search, Flight Payment, Flight Booking and Loyalty points including end-to-end testing, GraphQL and CI/CD. This web application was the theme of Build on Serverless Season 2 on AWS Twitch running from April 24th until end of August in 2019.
Stars: ✭ 1,290 (+948.78%)
Mutual labels:  tracing
Tracetools
Tools to process Go trace logs into various profiles. Complement for "go tool trace".
Stars: ✭ 105 (-14.63%)
Mutual labels:  tracing
Memstrack
A memory allocation tracer combined with stack trace.
Stars: ✭ 60 (-51.22%)
Mutual labels:  tracing
Zio Logging
Simple logging for ZIO apps, with correlation, context & pluggable backends out of the box.
Stars: ✭ 85 (-30.89%)
Mutual labels:  tracing
Tracing
Application level tracing for Rust.
Stars: ✭ 1,294 (+952.03%)
Mutual labels:  tracing
Stackimpact Nodejs
DEPRECATED StackImpact Node.js Profiler - Production-Grade Performance Profiler: CPU, memory allocations, async calls, errors, metrics, and more
Stars: ✭ 46 (-62.6%)
Mutual labels:  tracing
Perfmark
PerfMark is a High Performance Tracing Library.
Stars: ✭ 112 (-8.94%)
Mutual labels:  tracing
Kamon
Distributed Tracing, Metrics and Context Propagation for application running on the JVM
Stars: ✭ 1,280 (+940.65%)
Mutual labels:  tracing
Helm Charts
Helm Charts for Jaeger backend
Stars: ✭ 94 (-23.58%)
Mutual labels:  tracing
Brave Opentracing
Bridge between OpenTracing and Brave
Stars: ✭ 64 (-47.97%)
Mutual labels:  tracing
Hubble
Hubble - Network, Service & Security Observability for Kubernetes using eBPF
Stars: ✭ 1,245 (+912.2%)
Mutual labels:  tracing
Jplusone
Tool for automatic detection and asserting "N+1 SELECT problem" occurences in JPA based Spring Boot Java applications and finding origin of JPA issued SQL statements in general
Stars: ✭ 91 (-26.02%)
Mutual labels:  tracing
Reinvent2018 Dev303 Code
Code accompanying AWS re:Invent workshop DEV 303 showcasing how to get deep application insights using Amazon EKS with AWS X-Ray and Amazon CloudWatch.
Stars: ✭ 55 (-55.28%)
Mutual labels:  tracing
Factory bot instruments
Instruments for benchmarking, tracing, and debugging Factory Girl models.
Stars: ✭ 108 (-12.2%)
Mutual labels:  tracing
Spm Agent Nodejs
NodeJS Monitoring Agent
Stars: ✭ 51 (-58.54%)
Mutual labels:  tracing
Java Spring Web
OpenTracing Spring Web instrumentation
Stars: ✭ 89 (-27.64%)
Mutual labels:  tracing
Dd Trace Rb
Datadog Tracing Ruby Client
Stars: ✭ 118 (-4.07%)
Mutual labels:  tracing
Spring Cloud Sleuth
Distributed tracing for spring cloud
Stars: ✭ 1,531 (+1144.72%)
Mutual labels:  tracing
Capture Thread
Lock-free framework for loggers, tracers, and mockers in multithreaded C++ programs.
Stars: ✭ 93 (-24.39%)
Mutual labels:  tracing

Siamese-RPN-tensorflow

Code for reproducing the results in the following paper:

Environment

  • python=3.6
  • tensorflow=1.10
  • cuda=9.0

Downloading VOT2013 Data

Downloading YouTube-bb Data

Downloading ILSVRC 2015-VID Data

Performance

The red box is for tracing

Visualization for debug

bbox in detection

  • red -- the groundtruth

  • black -- bbox with highest score

  • other colors -- bbox with scores from second to tenth.

Training and Evaluation

If your data format is the same as VOT 2013, you can run the code directly. If not, you need to change the utils/image_reader.py or convert the data format to VOT format.

To train Siamese-RPN:

python train.py

If you want to see if the training is reasonable in the course of training, you can choose to turn on debug.Just change the init() in train.py

self.is_debug=True

This will result in a debug folder where you can see pictures of the training process, with groundtruth in red and box in top 10 scores in other colors.

To test Siamese-RPN:

To test series of images like VOT format

If you want to test a series of images captured from the video, you need to assign new values img_pathand img_label in config.py, which are the files of your image's path and label, respectively. Then execute the following commands

python test.py

This command will automatically synthesize videos from image sequences, and also synthesize videos from processed images, which are saved in. / data / vedio

To test a vedio

If you are testing a video, you need to put the video in./data/vedio. You can run the following command and select the object you want to track in the first frame according to the program prompt at the beginning.

python vedio_test.py test.mp4

The 'test.mp4' is the name of your vedio

Model

I will provide the well-trained model in the next few days

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].