Assignment Question
Develop software on a Remote Raspberry Pi to capture video of a red dot on a white background from a Web Cam and stream it to a Local Raspberry Pi on which the video will be received and image processing performed to detect how much the dot has moved in x-y directions since the previous video image. The Local RPi is then to transmit this x-y motion data to the Remote RPi on whose terminal this x-y data is to be displayed. This will be repeated between a remote RPi. The student will record packet throughput, round trip delay and jitter performance data of both image and data transmissions using Wireshark and present this data in suitable graphs comparing the performance of each of the systems with each other. A video of the system is to be submitted with the report and software that shows the systems working with a verbal narrative explaining its operation.
Last Completed Projects
| topic title | academic level | Writer | delivered |
|---|
jQuery(document).ready(function($) { var currentPage = 1; // Initialize current page
function reloadLatestPosts() { // Perform AJAX request $.ajax({ url: lpr_ajax.ajax_url, type: 'post', data: { action: 'lpr_get_latest_posts', paged: currentPage // Send current page number to server }, success: function(response) { // Clear existing content of the container $('#lpr-posts-container').empty();
// Append new posts and fade in $('#lpr-posts-container').append(response).hide().fadeIn('slow');
// Increment current page for next pagination currentPage++; }, error: function(xhr, status, error) { console.error('AJAX request error:', error); } }); }
// Initially load latest posts reloadLatestPosts();
// Example of subsequent reloads setInterval(function() { reloadLatestPosts(); }, 7000); // Reload every 7 seconds });

