<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Kinovea - Forums — Experimental version - 0.8.27]]></title>
		<link>https://www.kinovea.org/en/forum/viewtopic.php?id=886</link>
		<atom:link href="https://www.kinovea.org/en/forum/extern.php?action=feed&amp;tid=886&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Experimental version - 0.8.27.]]></description>
		<lastBuildDate>Thu, 19 Sep 2024 21:36:16 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Experimental version - 0.8.27]]></title>
			<link>https://www.kinovea.org/en/forum/viewtopic.php?pid=6423#p6423</link>
			<description><![CDATA[<p>There is no &quot;limb tacking&quot; in any version, only pattern tracking. For an angle it will track the three points independently. </p><p>This should be there in 0.8.27. The sizes of the pattern window and search window are taken from the default tracking configuration set in preferences. It works much better with markers and typically it still requires some manual adjustment. The tracking performance and UX is not so good even in latest versions, I&#039;m investigating various ideas to improve it.</p>]]></description>
			<author><![CDATA[null@example.com (joan)]]></author>
			<pubDate>Thu, 19 Sep 2024 21:36:16 +0000</pubDate>
			<guid>https://www.kinovea.org/en/forum/viewtopic.php?pid=6423#p6423</guid>
		</item>
		<item>
			<title><![CDATA[Re: Experimental version - 0.8.27]]></title>
			<link>https://www.kinovea.org/en/forum/viewtopic.php?pid=6422#p6422</link>
			<description><![CDATA[<p>Does this version (0.8.27) support limb tracking like the latest versions do? I am looking to track the angles of a cyclist&#039;s leg during pedals, thanks.</p>]]></description>
			<author><![CDATA[null@example.com (mStirling)]]></author>
			<pubDate>Wed, 18 Sep 2024 10:00:18 +0000</pubDate>
			<guid>https://www.kinovea.org/en/forum/viewtopic.php?pid=6422#p6422</guid>
		</item>
		<item>
			<title><![CDATA[Re: Experimental version - 0.8.27]]></title>
			<link>https://www.kinovea.org/en/forum/viewtopic.php?pid=4165#p4165</link>
			<description><![CDATA[<p>Joan, every single issue we discussed in this discussion topic has been resolved in version 9.1. Amazing!</p>]]></description>
			<author><![CDATA[null@example.com (Waheeden)]]></author>
			<pubDate>Mon, 10 Feb 2020 04:56:09 +0000</pubDate>
			<guid>https://www.kinovea.org/en/forum/viewtopic.php?pid=4165#p4165</guid>
		</item>
		<item>
			<title><![CDATA[Re: Experimental version - 0.8.27]]></title>
			<link>https://www.kinovea.org/en/forum/viewtopic.php?pid=4065#p4065</link>
			<description><![CDATA[<div class="quotebox"><cite>wardjoosten wrote:</cite><blockquote><p>all the videos that are recorded from the display are sped up to about 120% of realtime.</p></blockquote></div><p>Hi, it is a limitation of the performance of recording delayed video in 0.8.27. The speed up is because the recording process missed some frames. It should be fixed in the next version.</p>]]></description>
			<author><![CDATA[null@example.com (joan)]]></author>
			<pubDate>Fri, 11 Oct 2019 20:03:09 +0000</pubDate>
			<guid>https://www.kinovea.org/en/forum/viewtopic.php?pid=4065#p4065</guid>
		</item>
		<item>
			<title><![CDATA[Re: Experimental version - 0.8.27]]></title>
			<link>https://www.kinovea.org/en/forum/viewtopic.php?pid=4048#p4048</link>
			<description><![CDATA[<p>Hi Joan,</p><p>We&#039;re using Kinovea in our gymnastics facility with a delay and the option to record from the display. It all works brilliantly, except for the fact that all the videos that are recorded from the display are sped up to about 120% of realtime.. is this a setting that I can change? It does so on three different stations, all using 0.8.27 with a Logitech C290 webcam.</p><p>Thanks!</p>]]></description>
			<author><![CDATA[null@example.com (wardjoosten)]]></author>
			<pubDate>Mon, 24 Jun 2019 21:01:32 +0000</pubDate>
			<guid>https://www.kinovea.org/en/forum/viewtopic.php?pid=4048#p4048</guid>
		</item>
		<item>
			<title><![CDATA[Re: Experimental version - 0.8.27]]></title>
			<link>https://www.kinovea.org/en/forum/viewtopic.php?pid=4043#p4043</link>
			<description><![CDATA[<p>Hi, </p><p>The most critical thing that will impact bandwidth is whether the camera is sending an MJPEG stream or full frames (any other stream format). For 1280x720@100, assuming RGB24 full frames, bandwidth shown in Kinovea should be something like (1280*720*3*100)/(1024*1024) = 263.67MB/s. This is how many bytes per second pass through the primary ring buffer, (not the same as the delay buffer, see diagram below).</p><p>So I&#039;m assuming the 1920x1080@50fps giving 20MB/s was an MJPEG stream? (Assuming the framerate is respected by the camera, low light conditions will increase exposure time and decrease framerate automatically, other cameras let you select options that aren&#039;t supported and send low fps streams instead).</p><p>When using an MJPEG stream, the recording mode &quot;Camera&quot; will pass the MJPEG frames straight to the output, bypassing decompression/compression, so this is the fastest to record. Frames are decoded in a different thread for display.</p><p>When using an RGB stream, the frames are uncompressed for display/compositing and then recompressed for output, and this is taking some time. My understanding is that this is the current bottleneck.</p><p>I&#039;m not sure about the truncation. I&#039;ll have to do my own experiments. Using 0-second delay vs using longer delay shouldn&#039;t really make a difference in terms of performance. The frames are sourced from the buffer in the same way. However there might be a laps of time where the buffer isn&#039;t full and there is no frame at the expected delay, in which case nothing will be output. Maybe this could explain the truncation and framerate difference? </p><p>Next version will have a mode for recording without compression whatsoever. This is only for the &quot;Camera&quot; recording mode at the moment. It increases performance for high bandwidth cameras that send RGB frames like USB 3.0 industrial cameras and possibly newer high end webcams. It takes a ton of space though.</p><p>I&#039;m looking at options on how to improve the workflow. I think this self-training use-case is very interesting and Kinovea should support it. The difficult part is that bottlenecks vary depending people&#039;s machines, cameras, and over time as hardware and connection standards evolve.</p><p>Here is a diagram of the flow of frames during capture and recording [ edit: removed the link, this is very much obsolete now ] I did a while ago. Hopefully not too cryptic. In the diagram the &quot;performance path&quot; is when you select recording mode &quot;Camera&quot;, and the WYSIWYG path is when you select &quot;Display&quot;.</p>]]></description>
			<author><![CDATA[null@example.com (joan)]]></author>
			<pubDate>Mon, 29 Apr 2019 12:38:27 +0000</pubDate>
			<guid>https://www.kinovea.org/en/forum/viewtopic.php?pid=4043#p4043</guid>
		</item>
		<item>
			<title><![CDATA[Re: Experimental version - 0.8.27]]></title>
			<link>https://www.kinovea.org/en/forum/viewtopic.php?pid=4042#p4042</link>
			<description><![CDATA[<div class="quotebox"><cite>Reiner wrote:</cite><blockquote><p>Hi,<br />if Kinovea is in replay mode, and the left window is loaded once with a video, I could not find any solution to &quot;reload&quot; it with another video. I can only address the right window using ctrl-o or Open/File to load another video. I don&#039;t want to use Drap and Drop (AutoIt-script).</p><p>Is there any solution or maybe a hidden hotkey?<br />Thanks</p></blockquote></div><p>Reiner,<br />I posted my AutoIt Script here:https://golfsimulatorforum.com/forum/build-your-own/computer-systems/136645-automatic-swing-recording-and-slow-motion-playback-with-kinovea/page6<br />It was very tricky getting the playback to work in Kinovea.&nbsp; Ctrl-O was my first try also.&nbsp; More shortcut keys would definitely help.</p>]]></description>
			<author><![CDATA[null@example.com (Waheeden)]]></author>
			<pubDate>Mon, 29 Apr 2019 04:25:09 +0000</pubDate>
			<guid>https://www.kinovea.org/en/forum/viewtopic.php?pid=4042#p4042</guid>
		</item>
		<item>
			<title><![CDATA[Re: Experimental version - 0.8.27]]></title>
			<link>https://www.kinovea.org/en/forum/viewtopic.php?pid=4041#p4041</link>
			<description><![CDATA[<p>Hi Joan,<br />I have a few more questions/comments about bandwidth bottlenecks and resulting frames/sec in Kinovea 8.27.</p><p>After some investigating:<br />- As Reiner suggested, I do have USB 3.1 gen 1 on both computers I tested in Posts 16 and 21 above.&nbsp; So the max transfer rate is 5Gbit/s or 625MB/s.<br />-When I monitor the USB port using Device Monitoring Studio, it tells me the camera is sending 20MB/s to Kinovea.&nbsp; This is a single instance with 1 camera, 1 capture screen, 1280x720 100fps.<br />- When I monitor 2 ports with 1 camera each, Device Monitoring Studio also shows 20MB/s to each port.&nbsp; This is with 2 instances, 1 capture screen each, 1280x720 100fps.&nbsp; So the USB ports do not appear to be overloading the same root hub.&nbsp; Also, each port has its own controller.<br />-A flash drive read/write test on the USB port shows 25MBps/10MBps.<br />-AMCAP recording software shows a frame size of 2700kbits/s.&nbsp; At 64fps without compression, I think this would result in a calculated transfer rate of 22MB/s.&nbsp; At 100fps, this would be 33MB/s.<br />-Kinovea reports a Bandwidth of 200MB/s and 99fps coming from a single camera running at 1280x720 100fps in either 1 or 2 Capture Screen modes.&nbsp; At 1920x1080 50fps, bandwith is 18.9MB/s.&nbsp; At 640x360 330fps, bandwidth is 350MB/s.<br /><strong>So my first question is, at 1280x720 100fps, is Bandwidth as reported in the header of the Capture Screen really 200MB/s?&nbsp; Or is it 200Mb/s, or maybe 20MB/s?&nbsp; How is Bandwidth defined here? I wonder why 1920x1080 50fps bandwidth is so much lower at 18.9MB/s?</strong>&nbsp; {I&#039;m not 100% confident in my calculations, so please let me know if something looks wrong.}</p><p>Next, to simplify things, I ran some manual recordings in Kinovea (No AutoIt script) using a stopwatch on my phone to determine when to press the start/stop button to get a 5 second clip.&nbsp; The stopwatch is visible in the recordings to calculate the real framerate, transfer rate, and duration.&nbsp; I then opened the clips in Kinovea to see the # of frames and duration.&nbsp; With a single instance of Kinovea, 1 Capture Screen, and 1 camera at 1280x720 100fps, here are the numbers:<br />- <em>Case 1: &quot;Recording mode and delay, Camera: records the video stream coming straight from the camera&quot;</em>; File Size = 88.8MB, Duration = 4.59sec, Frames = 459, Stopwatch duration = 4.66sec, Calculated transfer rate = 19.1MB/s, Calculated frame rate = 98.5fps<br />- <em>Case 2: &quot;Recording mode and delay, Display: records what is currently displayed on the screen&quot; and &quot;Display framerate (fps)&quot; set to 100 and &quot;Delay slider&quot; set to 0</em>; File Size = 42.7MB, Duration = 1.37sec, Frames = 138, Stopwatch duration = 4.58sec, Calculated transfer rate = 9.3MB/s, Calculated frame rate = 30.1fps<br />- <em>Case 3: &quot;Recording mode and delay, Display: records what is currently displayed on the screen&quot; and &quot;Display framerate (fps)&quot; set to 100 and &quot;Delay slider&quot; set to 4.5sec</em>; File Size = 37.9MB, Duration = 1.21sec, Frames = 122, Stopwatch duration = 1.96sec, Calculated transfer rate = 19.3MB/s, Calculated frame rate = 62.2fps<br />- <em>And finally Case 4, which is what I use with AutoIt: &quot;Recording mode and delay, Display: records what is currently displayed on the screen&quot; and &quot;Display framerate (fps)&quot; set to 64 and &quot;Delay slider&quot; set to 4.5sec</em>; File Size = 43.9MB, Duration = 2.22sec, Frames = 143, Stopwatch duration = 2.22sec, Calculated transfer rate = 19.8MB/s, Calculated frame rate = 64.4fps<br />My observations from the numbers above are:<br />1) It seems to me that Kinovea 8.27 is able to receive 1280x720 at 100fps on my laptop in Live Mode, but not in Delay Mode.<br />2) It appears that, in Delay Mode with the slider moved, Kinovea truncates the video clip.&nbsp; For example, in Case 4 above, the stopwatch shows that only 2.22sec of the 5sec clip that was recorded.<br />3) Also, with the slider moved to 4.5sec delay in Case 3, the recorded clip has a higher frame rate (62.2fps) and transfer rate (19.3MB/s) than with the slider set to 0 in Case 2 (30.1fps and 9.3MB/s).<br /><strong>My second question is, are these the expected behaviors of the Delay Mode capture pipeline (Buffer/Composite/Display) in Kinovea 8.27?&nbsp; Is there something that I could change to get the full frame rate?&nbsp; For example, change Kinovea settings, better laptop, just wait for v8.28, etc.</strong></p><p>You can see the AutoIt script in action here: <a href="https://youtu.be/76bIdMv-GPY">https://youtu.be/76bIdMv-GPY</a> <br />Even at 64fps, it works very well for golf swing analysis.</p><p>Thanks again!</p>]]></description>
			<author><![CDATA[null@example.com (Waheeden)]]></author>
			<pubDate>Mon, 29 Apr 2019 03:42:52 +0000</pubDate>
			<guid>https://www.kinovea.org/en/forum/viewtopic.php?pid=4041#p4041</guid>
		</item>
		<item>
			<title><![CDATA[Re: Experimental version - 0.8.27]]></title>
			<link>https://www.kinovea.org/en/forum/viewtopic.php?pid=4040#p4040</link>
			<description><![CDATA[<div class="quotebox"><cite>laskowskimaciej wrote:</cite><blockquote><p>And one more - is it possible to NOT showing the centre of the circle? (marked as &quot;+&quot;)</p></blockquote></div><p>At the moment it&#039;s not possible to remove it, but you&#039;re right, it should be optional.</p><div class="quotebox"><cite>crnkoj wrote:</cite><blockquote><p>Hey is it possible to use more than 2 cameras at once for simultaneous recording, couldnt really find the option anywhere.</p></blockquote></div><p>No, it&#039;s not possible. There is currently no plan to add this in the near future.</p>]]></description>
			<author><![CDATA[null@example.com (joan)]]></author>
			<pubDate>Sat, 20 Apr 2019 18:26:00 +0000</pubDate>
			<guid>https://www.kinovea.org/en/forum/viewtopic.php?pid=4040#p4040</guid>
		</item>
		<item>
			<title><![CDATA[Re: Experimental version - 0.8.27]]></title>
			<link>https://www.kinovea.org/en/forum/viewtopic.php?pid=4038#p4038</link>
			<description><![CDATA[<p>Hey is it possible to use more than 2 cameras at once for simultaneous recording, couldnt really find the option anywhere.<br />Would like to have 3 (both sides and back/front) or 4 (both sides, back and front) for Gait and Bicycle analysis.<br />Thanks</p>]]></description>
			<author><![CDATA[null@example.com (crnkoj)]]></author>
			<pubDate>Thu, 18 Apr 2019 19:58:15 +0000</pubDate>
			<guid>https://www.kinovea.org/en/forum/viewtopic.php?pid=4038#p4038</guid>
		</item>
		<item>
			<title><![CDATA[Re: Experimental version - 0.8.27]]></title>
			<link>https://www.kinovea.org/en/forum/viewtopic.php?pid=4037#p4037</link>
			<description><![CDATA[<p>Hi Joan</p><p>Good update, few useful features. To be honest, I prefered this little bit transparent text box (just for the sake of transparency). Is it possible to set the transparency?</p><p>Rectangle - simple, yet very necessary. I would like to see eclipse as well. It would be nice if those, along with circle, could be filled with colour - and setting the transparency of this colour would be needed then. This would be very useful to show spaces etc.</p><p>And one more - is it possible to NOT showing the centre of the circle? (marked as &quot;+&quot;)</p>]]></description>
			<author><![CDATA[null@example.com (laskowskimaciej)]]></author>
			<pubDate>Sun, 14 Apr 2019 10:52:14 +0000</pubDate>
			<guid>https://www.kinovea.org/en/forum/viewtopic.php?pid=4037#p4037</guid>
		</item>
		<item>
			<title><![CDATA[Re: Experimental version - 0.8.27]]></title>
			<link>https://www.kinovea.org/en/forum/viewtopic.php?pid=4036#p4036</link>
			<description><![CDATA[<p>Hi Joan,<br />thanx a lot. It&#039;s a good idea to switch the windows. i will try it.</p>]]></description>
			<author><![CDATA[null@example.com (Reiner)]]></author>
			<pubDate>Wed, 10 Apr 2019 10:15:59 +0000</pubDate>
			<guid>https://www.kinovea.org/en/forum/viewtopic.php?pid=4036#p4036</guid>
		</item>
		<item>
			<title><![CDATA[Re: Experimental version - 0.8.27]]></title>
			<link>https://www.kinovea.org/en/forum/viewtopic.php?pid=4035#p4035</link>
			<description><![CDATA[<p>Regarding USB it also has to do with USB root hubs. The USB port the camera is plugged into should ultimately be on its own controller so it can have the current and bandwidth for itself instead of sharing it with the other camera.</p><p>Yeah there is a heuristic when loading a file when both screens are already filled. Maybe the menu View &gt; Invert video positions could help, it will swap the screens around, but it&#039;s not mapped to a shortcut key at the moment, sorry.</p>]]></description>
			<author><![CDATA[null@example.com (joan)]]></author>
			<pubDate>Tue, 09 Apr 2019 22:00:38 +0000</pubDate>
			<guid>https://www.kinovea.org/en/forum/viewtopic.php?pid=4035#p4035</guid>
		</item>
		<item>
			<title><![CDATA[Re: Experimental version - 0.8.27]]></title>
			<link>https://www.kinovea.org/en/forum/viewtopic.php?pid=4034#p4034</link>
			<description><![CDATA[<p>Hi,<br />if Kinovea is in replay mode, and the left window is loaded once with a video, I could not find any solution to &quot;reload&quot; it with another video. I can only address the right window using ctrl-o or Open/File to load another video. I don&#039;t want to use Drap and Drop (AutoIt-script).</p><p>Is there any solution or maybe a hidden hotkey?<br />Thanks</p>]]></description>
			<author><![CDATA[null@example.com (Reiner)]]></author>
			<pubDate>Tue, 09 Apr 2019 21:07:04 +0000</pubDate>
			<guid>https://www.kinovea.org/en/forum/viewtopic.php?pid=4034#p4034</guid>
		</item>
		<item>
			<title><![CDATA[Re: Experimental version - 0.8.27]]></title>
			<link>https://www.kinovea.org/en/forum/viewtopic.php?pid=4033#p4033</link>
			<description><![CDATA[<p>Hi,<br />I think, the maximum acquisition rate is rather less related to the processor but to the USB-Interface. Using a relatively new motherboard having USB 3.1 release 2, you can use 2 cameras with 120fps without dropped frames. It&#039;s a i5 9600k processor loaded at about 70% evenly distributed to all 6 cores, if 2 kinovea and some other stuff (Skytrak etc.) are running.</p>]]></description>
			<author><![CDATA[null@example.com (Reiner)]]></author>
			<pubDate>Tue, 09 Apr 2019 21:01:32 +0000</pubDate>
			<guid>https://www.kinovea.org/en/forum/viewtopic.php?pid=4033#p4033</guid>
		</item>
	</channel>
</rss>
