
Exam Marker Projects
Looking for freelance Exam Marker jobs and project work? PeoplePerHour has you covered.
opportunity
Revised Golf Club Video Tracking and Analysis Program
Hi, I please need a relatively simple application constructed for video-based golf club tracking and analysis. Previous attempts have been partially successful, so there is some work there that can be referenced and potentially utilized. A standard 2D camera and video are all that are required for acceptable application performance. Simple marker tracking is planned at this time, comprising two visible markers placed at determined, measured locations on a club to be tracked by users. Original videos input into the needed application will be relatively short, limited to perhaps a few seconds or less. The application will initially need to reformat videos to include frame numbers for user and application referencing. After careful examination of the reformatted video by a user as instructed, the user will select just two frames (so four tracking markers) for the application to further work with. Tracking should be performed just manually and interactively for now. So a means should be provided for a user to view, manually place, and precisely adjust computer tracking indicators over each of the four markers in the two frames selected. With that information, combined with specified club measurements input into the application by the user by this point, an initial club tracking result can be graphically and mathematically displayed. That tracking result will typically reveal a preliminary solution for a user (a rotation point location along the length of the club). But due to the nature of the original club movement, a preliminarily calculated rotation point location will usually be incorrect, commonly by a substantial amount. Thus, an additional process involving some fairly basic geometric and mathematic calculations will need to be further applied (will be provided). And a corrected, final rotation point location as calculated will be the result, graphically and mathematically displayed by the application for a user. I will need to test and work with any efforts on my (Windows) desktop. Desktop and web versions are minimally planned for now. So a programming language(s) that could work effectively for both would be helpful. I think R and Python were mostly tried previously, with various pluses and minuses about each. I am open to any other language(s) as well. Added descriptions needed for both the video tracking and solution aspects to accomplish functional success are much more thoroughly detailed in separate documentation. It includes systematic breakdowns of previous failed attempts for reference, what worked well and not so well with them, and the processes and equations to be applied to calculate final solutions. Various elements of intellectual property are involved. So while I can additionally discuss some matters beforehand, an NDA will be strictly required before I will be able to disclose and/or discuss certain information related to the much more detailed documentation. I can provide the needed NDA after reviewing any proposals I might be fortunate enough to receive. While there is no set budget, past failures have to this day prevented me from better validating certain critical elements concerning the needed application on an extremely foundational level. And until such better proof is obtained first, my additional spending on this particular project will be as minimal as possible to say the very least. If and when better validated, I can reevaluate where to go from there. I am open to both project or hourly rate offers, but I cannot seriously consider an hourly rate offer without a guaranteed maximum number of hours stated up front to successfully complete the needed application. Thank you very much.
16 days ago14 proposalsRemoteopportunity
Designer who LOVES the English & understands GCSE English
We are looking for a superstar designer who loves English and would like to get involved in a fantastic project for children. It's really important you have tonnes of graphic design experience and ideally an A*/Grade 8/9 at GCSE and possibly an A-Level in English Language/Literature! There are 5 books that need designed. An inspector calls x 4 books. Approx pages 60 each. 2 English Language exam booklets x 50 pages We want it to be as good as CGP and Oxford Learning etc so need someone who is VERY astute and creative. Make this your most rewarding and enjoyable project yet! Unlimited revisions until satisfaction of our director is key as these books will set the standard and benchmark for all our 100 books.
18 days ago28 proposalsRemoteI need someone for a short clip on my YT videos
We have a company for GCSE English and other things related to language learning and would like someone who can create a short 30 second to 1 minute clip (which we'd put at the end of our videos). In this clip you would encourage people to subscribe to our channel, visit our website and to buy our e-books and T-shirts (we can send some of those for you as a complimentary gift). We are looking for someone British (GCSE is a British exam), photogenic and who can generate a lot of sales for us. It would be preferable if you could also edit a few seconds of a cursor clicking on our website and clicking on our products in your clip alongside the voice over, or we could just hire an editor for that.
23 days ago16 proposalsRemoteLottie Character Animation
Lottie Character Animation — Children's App Owl Character I have an approved cartoon owl character (image attached). I need this converted into a set of Lottie JSON animation files for a Flutter mobile app. Technical specs: Canvas: 512×512px Frame rate: 30fps Transparent background Optimised for Flutter lottie 2.x package All easing: ease-in-out, no linear keyframes I need 7 animation states: Idle — seamless loop: gentle breathing (100%→103% scale), blink every 4 seconds, ear tufts sway gently Speaking — beak opens and closes rhythmically while audio plays, seamless loop Celebrating — wings raise, body hops, eyes become happy crescents, plays once then returns to idle Thinking — character tilts 12° to one side, holds, returns, gentle loop Worried — slow calm transition, eyes slightly larger and more attentive, gentle forward lean. Must feel warm and safe — NOT alarmed Waving — one wing raises and waves twice, plays once then returns to idle Entrance — character fades and scales in on app open, leads into idle Deliverables: Layered SVG of the character 7 individual Lottie JSON files (one per state) 1 combined JSON with all states as named markers for Flutter Preview GIF showing all states Please include Lottie portfolio links with your proposal.
a month ago8 proposalsRemoteopportunity
Extract blood test data from PDF documents that have been OCR'd
The objective is to build a structured blood test database that allows pathology results to be viewed, edited, filtered, and exported to Excel via a web-based HTML interface. The system stores results in a clean, standardised format so trends can be analysed accurately over time. Using AI-assisted OCR, I have built a local Python extraction pipeline that converts PDF pathology reports into machine-readable text and inserts structured data into a SQLite database. The majority of blood tests extract correctly, including canonical test name, result value, unit, and reference range. However, I have reached a specific technical issue with three markers: • CRP (C-reactive protein) • ESR • GLU (Glucose) The OCR output clearly contains the correct lines, and debug logs confirm they are processed. Yet no rows are inserted for these markers. The failure appears to occur between canonical matching, numeric extraction, or validation logic. Current System Architecture The system runs locally and consists of: • extraction_core_2.py (main engine) • Supporting modules for OCR preprocessing, lab dictionary building, regex matching, and validation • SQLite backend • Schema-driven canonical lab dictionary • Controlled fuzzy fallback logic • HTML viewer for results display and Excel export Pipeline flow: Convert PDF to image (pdf2image) Preprocess Run Tesseract OCR Clean and normalise text Match against canonical lab dictionary Extract: canonical test name numeric result unit reference range Validate Insert into SQLite The engine is deterministic and rule-based. The Specific Problem Example OCR line: CRP H 5.2 mg/L 0-5 OCR text is correct. NUMBER_PATTERN matches. The canonical dictionary contains the test. Yet: Inserted 0 rows from 0126251OrderReport_23B00006604_CRP.pdf Likely failure points include: • Canonical containment match failing due to normalisation • Flag tokens (“H”, “L”) interfering with numeric capture • Numeric extraction anchored incorrectly • Validation rejecting due to strict range formatting • Unit pattern mismatch (e.g. mmol/L) • Dictionary indexing issue • Match overridden by another lab name • Guard conditions too strict If validation fails, the row is rejected silently. All other panels extract correctly. The issue appears isolated. What Is Required This is not a rebuild. We do not want: • Re-architecture • Experimental AI guessing logic • Large-scale changes • Expanded fuzzy matching We need: 1. Precise Diagnosis Identify exactly where CRP, ESR, and GLU are failing insertion and which rule is causing rejection. 2. Minimal Safe Fix Implement a targeted correction that: • Adjusts canonical matching if required • Anchors numeric extraction correctly • Allows flag tokens without blocking capture • Relaxes only necessary validation checks • Preserves deterministic behaviour 3. Zero Regression • No impact to currently working panels • No performance degradation • No uncontrolled fuzzy expansion 4. Modular Implementation If appropriate: • Implement as small isolated module or • Cleanly adjust matching block The existing architecture should remain intact. Constraints The system is designed to be: • Deterministic • Schema-driven • Reproducible • Forensic-grade We cannot introduce probabilistic or unpredictable behaviour. Longer-Term Goal After stabilising extraction: • Migrate to web deployment • Enable structured uploads • Add trend analysis • Later incorporate AI-assisted interpretation Immediate priority: Stabilise deterministic extraction for CRP, ESR, and GLU without breaking the existing engine. Materials Provided Uploaded: • Full extraction_core_2.py (text format) • Screenshot of HTML viewer • Sample PDF files • Export showing required output Additional materials available on request: • Sample OCR blocks • Canonical dictionary entries • Regex patterns • Validation logic • Database schema • Debug logs This is a focused debugging and refinement request. I have spent many hours attempting to isolate the issue and now require an experienced developer to identify the blocking condition and implement a practical fix. I have been advised this should take 1–2 hours for a senior developer. Looking for a swift turnaround.
a month ago22 proposalsRemote
Past "Exam-marker" Projects
opportunity
Small business Drama school needs practice app creating
Small theatre-school seeks a cross-platform, child-friendly practice app with an engaging, colorful, accessible UI featuring large buttons and icons. Core features: syllabus links, script storage and searchable library filtered by genre and grade, notes, calendar, practice log, links, stopwatch timer, pop-up inspirational quotes, past/future exam area, and media capture (audio/video) with submission and teacher feedback (written and recorded). Developer must deliver complete build and handle app-store publication with minimal client involvement.
LLM water mark removal
Urgent- i am looking for some one to remove a particular marker mark from a PDF. The PDF will not convert to a useable PDF and is to all intents an image. it is an 11 page PDF with one watermark per page in the bottom right hand corner?
opportunity
I have 4 or 5 cifas markers from the official website
I'm seeking help to remove CIFAS markers from the records. I have a report and it shows 4 cifas markers. I need them removed or it's 6 years. From the official cifas website but not on transunion just the official cifas site.
opportunity
11+ exam papers
Create 4 x GL-Style 11+ Practice Papers (English, Maths, VR, NVR) + OMR Answer Sheets (White-Label) I’m looking for an experienced 11+ assessment writer + designer to create GL-style practice papers that closely replicate the look/feel, structure, timing style, and multiple-choice answer-sheet experience of GL 11+ tests (i.e., question booklet + separate multiple-choice answer sheet suitable for computer marking/OMR). Important: You must produce both the full question content and the full paper design/layout (booklet + answer sheet). If you can’t do all 4 subjects, you can still apply for any subset (e.g., Maths + NVR only). >What I Need (Scope) Create 4 complete papers in GL style: English (11+) Maths (11+) Verbal Reasoning (VR) Non-Verbal Reasoning (NVR) (including spatial-style question types) Format requirements Multiple-choice questions Separate multiple-choice answer sheet (OMR-ready / computer-marked format) Clear exam-style instructions (how to mark answers, corrections, keeping place on answer sheet, etc.) consistent with GL-style experience Print-ready layout that feels like a real exam booklet >Deliverables (per subject paper) Question Booklet (PDF print-ready) OMR-style Answer Sheet (PDF print-ready) Answer Key (separate) Mark Scheme (simple marking guidance) Editable source files (e.g., InDesign/Illustrator/Word + assets/fonts used) Optional (bonus): Worked explanations + difficulty mapping (easy/medium/hard). Quality Bar (Non-negotiable) Original questions only (no copying from GL/CGP/any published papers). Must mimic the style and exam experience, but content must be 100% newly authored. (You will be required to warrant originality.) Clean, consistent typesetting; no ambiguity in correct answers; no patterning in MCQ options. >Who Should Apply People with proven experience creating 11+ practice papers or assessment item writing (MCQ) Strong NVR diagram design ability (pattern/rotation/sequence/matrices, etc.) Strong document layout skills (exam booklets) Comfortable producing OMR-ready answer sheets and print production files Partial Applications Allowed >You may apply if you can deliver: All 4 papers, OR Any subset (e.g., Maths + NVR, VR only, etc.) Just state clearly which subjects you will deliver. >To Apply — include ALL of the following Which subjects you can do (English / Maths / VR / NVR) Links/samples of similar exam papers you’ve written/designed (or screenshots) Confirm you can deliver booklet + OMR answer sheet + answers + editable source files Your proposed timeline + cost per paper Any toolset you use (InDesign, Illustrator, Affinity, Word, LaTeX, etc.)
opportunity
Developer needed for privacy-focused CV prototype
Need a computer vision developer (Python, OpenCV, MediaPipe, or similar) • Build a lightweight real-time vision pipeline • Detect faces from a webcam or phone camera • Detect a visible marker (printed symbol or pattern) in the scene • Apply conditional image filtering (blur/mask) when marker is present • Focus is on proof-of-feasibility, not a commercial product • No facial recognition, identity tracking, or databases involved • Concept is patent pending, full details shared after initial discussion
Strategic Plan 'Travel Pack' Asset Package
I need a cohesive set of visual and physical assets to communicate our organisational Strategic Plan for the coming year. The concept is built around a “travel agent / journey” theme, - “we know where we’re going – come be part of the journey.” Assets need to: - Be simple, consistent, and strengthen leadership communication - to be used as a light reference tool; - Give people memorable, tactile takeaways that create focus; - Communicate strategy at a high level without overwhelming detail (no sensitive details); - Create moments of curiosity, fun and engagement; Output - A 'Travel Pack' (all editable digital versions that are able to be printed) including: - A 'Boarding Pass' - Your Ticket to the Year Ahead - An Itinerary - HIghlights of our Journey - A Passport to Progress - focusing on culture and collaboration - A 'Travel Brochure' - strategic plan at a glance - Slide Template for presentations - maybe to include a journey map, destination markers etc - Intranet Assets - banners for updates etc Tone & Look - Confident, positive, energetic - Clean and modern - High readability - Avoid cliché corporate imagery (e.g., handshakes, arrows everywhere) - Travel theme should enhance, not overpower, the strategy Practical Considerations: - Must align to Brand Guidelines (in terms of colours and font. Doesn't need to be quite as corporate as this is for internal communications so want an element of fun) - Must be delivered as editable templates (Powerpoint, Adobe, Word) - Templates should be simple for non-designer to use
Java coding
Innovative solutions for board exam class 10 icse the
Map river tracing
I have a Mapbox-based fishing app. I need someone to: Trace fishing beat centre lines so they follow the river exactly Use Mapbox / OpenStreetMap data as the source of truth Create clean LineString geometries Export the result as GeoJSON (one feature per beat) I will provide: A list of rivers / beats Start and end locations (screenshots or rough markers) No frontend work required. This is purely geospatial tracing.
English to Dutch Translation
I need someone who speaks very good English and Dutch to translate these 3 word documents from English into Dutch. The formatting in each document must remain exactly the same. The tables/graphs/images and numbers must remain accurate and in place, and the translation must also be accurate as this is an exam paper. If there are any discrepancies or incorrect translations, this could mean that the question is wrongly worded or the answers are not correct. One document is two pages, another is eleven pages, and another is thirteen pages. I will need these translating by no later than Thursday 12th February 2026 at 12pm.
Wix Website Build for GCSE Maths Revision Platform (3 Pages)
I am looking for an experienced Wix website developer to build a simple, clean, and easy-to-maintain website for a GCSE Maths revision project called GCSE Maths Focus. The purpose of the website is to help GCSE students and teachers easily access topic-based revision resources (PDFs and YouTube video solutions) for AQA and Edexcel exam boards. The site is educational and non-commercial, with an optional donation feature (“Buy Me a Coffee”). Website Structure (3 Pages) 1️⃣ Foundation Maths 2️⃣ Higher Maths 3️⃣ About Us The site should be responsive (mobile + desktop) and simple to update without coding knowledge. Functional Requirements
Wix Website Build for GCSE Maths Revision Platform (3 Pages)
I am looking for an experienced Wix website developer to build a simple, clean, and easy-to-maintain website for a GCSE Maths revision project called GCSE Maths Focus. The purpose of the website is to help GCSE students and teachers easily access topic-based revision resources (PDFs and YouTube video solutions) for AQA and Edexcel exam boards. The site is educational and non-commercial, with an optional donation feature (“Buy Me a Coffee”). Website Structure (3 Pages) 1️⃣ Foundation Maths 2️⃣ Higher Maths 3️⃣ About Us The site should be responsive (mobile + desktop) and simple to update without coding knowledge. Functional Requirements
Complete InDriver-Style Flutter App (Bidding System) for Study
I would like to take this opportunity to honestly explain the context of my request. I am currently a university programming student, and I am about to take a very important practical exam related to the analysis of a complete InDriver-style system. The goal of this exam is not just to see screens, but to deeply understand the source code, project architecture, ride flows, the bid/price negotiation system, map integration, backend logic, and the administrative panel. For this reason, it is essential that the system is truly functional, even if only in test mode. I need to be able to run the project, explore the flows, and study the full logic behind it. I want to be completely transparent:
opportunity
Expert Advisor
Project title AO-Flip EA (MT4/MT5) — Awesome Oscillator Flip Trading Bot + Risk Management + Logging Short summary AO-Flip is a MetaTrader Expert Advisor that trades based on Awesome Oscillator (AO) momentum flips and includes configurable filters, risk controls, and detailed logging to verify behavior in Strategy Tester and on live charts. What it does Detects AO momentum flips (histogram direction changes) and generates BUY/SELL signals Executes trades with configurable risk & order management Optional filters (toggle via inputs): trend/MA filter, volatility (ATR), time/session filter, spread filter, extra confirmations (as required) Supports bar-close mode or tick mode (selectable) to reduce tester vs live differences Optional on-chart visuals: entries/exits, arrows/labels, status panel Detailed CSV/Journal logging: signals, orders, reasons for blocking a trade, and execution costs (spread/commission/slippage if available) Key features Risk controls: fixed lot or % risk, max spread, max trades, cooldown, session windows Trade management: SL/TP, trailing stop, break-even, partial close (optional) Verification tools: on-chart markers + “why/why not” logs for every decision Clean, modular code: filters and modules can be enabled/disabled via inputs Performance-friendly: stable runtime, optimized calculations Typical use cases Turn an AO-flip strategy into a reliable EA with proper controls Improve an existing EA by adding filters, execution rules, and logging Troubleshoot tester vs live mismatches with transparent decision logs Tech details Platform: MetaTrader 4 / MetaTrader 5 Language: MQL4 / MQL5 Core logic: Awesome Oscillator (AO) flip + optional filters Output: automated trading + optional on-chart objects + CSV logs Deliverables Source code (.mq4 / .mq5) + compiled (.ex4 / .ex5) if required Short README (inputs, how to run, recommended tester settings) Test steps + sample logs (when logging enabled) Note / disclaimer Software development only. No financial advice and no profit guarantees. Screenshot captions (EA version) EA entry/exit markers: Trades executed by AO-Flip with clear chart markers and labels. Inputs / settings: Risk, filters, trade management, and execution limits configured via inputs. On-chart status panel (optional): Shows current mode, filter states, spread/session status, and last signal. CSV/Journal logs: Decision logs (“why/why not”), signal history, and execution/cost fields for verification.
opportunity
Online Course Portal
A web portal to deliver courses to colleges, manage students and lecturers, and run basic exams. The system will be built using React (front-end) and Node.js (back-end).
Google Maps Platform keys
We have an app on Play Store and Apple App Store. The app uses Google Maps to add markers, search for markers for local groups setup by app users. Recently we got an email from Google, it is about exposed Google Maps Platform keys. See attachment. We need someone to check and fix this issue, IF there is a need to... We are not sure how to address the issue