Desktop Screen Capturing Module for MopReM

Desktop Screen Capturing Module for MopReM

This is a part of image pre-processing module for MopReM: Moiré Pattern Removal for Mobile, Texts/Diagrams on Single-colored Background. Click the link to visit the project page of SNU-CV-PIP team.

We first select the window to screen-capture and crop the shared screen with range selector. The module saves the screenshot surrounded with target frame as target.png. Re-capture the target photo and save as source.png. Only executable on desktop!

DAO-CP - Data-Adaptive Online CP decomposition for tensor stream

PONE-D-21-39294R1
I’m pleased to inform you that your manuscript has been deemed suitable for publication in PLOS ONE. Congratulations! Your manuscript is now with our production department.

How can we accurately and efficiently decompose a tensor stream? The problem of efficiently decomposing tensor streams has been of great interest because many real-world data dynamically change over time. Therefore, we propose DAO-CP, an accurate and efficient online CP decomposition method which adapts to data changes.

Music player de lucetre

Embed YouTube in HTML

This is an example article showing how to embed YouTube videos.

Due to COVID-19,
I’ve started a YouTube channel and decided to upload practice videos while taking PE courses.

Korean Traditional Martial Arts

  • Long Staff Spinning Skills

Skulpt to use Python in Markdown

This is an example article showing how to embed Skulpt and Ace code editor to use Python.

  • Skulpt is an entirely in-browser implementation of Python.
  • Tutorial w. simple Python turtle code used while doing TA works.

Try This

import turtle as t print("Drawing Ryan...") t.shape("turtle") t.speed(7) t.fillcolor("#f7aa1b") t.pencolor("#111111") t.pensize(10) print("Left Ear...") t.penup() t.goto(-120, 120) t.pendown() t.begin_fill() t.circle(50) t.end_fill() t.penup() t.goto(120, 120) print("Right Ear...") t.pendown() t.begin_fill() t.circle(50) t.end_fill() t.penup() t.goto(0, -200) print("Face...") t.pendown() t.begin_fill() t.circle(200) t.end_fill() t.penup() t.pensize(15) t.goto(-120, 60) print("Left Eyebrow...") t.pendown() t.goto(-50, 60) t.penup() t.goto(120, 60) t.pendown() print("Right Eyebrow...") t.goto(50, 60) t.penup() t.goto(-80, 15) print("Left Eye...") t.pendown() t.fillcolor("#111111") t.begin_fill() t.circle(6) t.end_fill() t.penup() t.goto(80, 15) print("Right Eye...") t.pendown() t.fillcolor("#111111") t.begin_fill() t.circle(6) t.end_fill() t.penup() t.goto(-7, -25) print("Mouth...") t.pendown() t.fillcolor("#ffffff") t.begin_fill() t.left(135) t.circle(32, 290) t.right(130) t.circle(32, 290) t.end_fill() t.penup() t.home() t.goto(0, -30) print("Nose...") t.pendown() t.begin_fill() t.circle(8) t.end_fill() print("Done!") t.hideturtle()

Run (Ctrl+Enter)