Loading...
Searching...
No Matches
Font-Demo
Prev Tutorial: Shader-Demo
Next Tutorial: Pedestrian-Demo
Original author | Amir Hassan (kallaballa) amir@.nosp@m.viel.nosp@m.-zu.o.nosp@m.rg |
Compatibility | OpenCV >= 4.7 |
Renders a Star Wars like text crawl using nanovg (OpenGL) and uses OpenCV for a pseudo 3D effect.
Downloading...
// This file is part of OpenCV project.
// It is subject to the license terms in the LICENSE file found in the top-level directory
// of this distribution and at http://opencv.org/license.html.
// Copyright Amir Hassan (kallaballa) <amir@viel-zu.org>
#include <opencv2/v4d/v4d.hpp>
#include <string>
#include <algorithm>
#include <vector>
#include <sstream>
#include <limits>
#ifdef __EMSCRIPTEN__
#include <emscripten.h>
#endif
/* Demo parameters */
#ifndef __EMSCRIPTEN__
constexpr long unsigned int WIDTH = 1280;
constexpr long unsigned int HEIGHT = 720;
#else
constexpr long unsigned int WIDTH = 960;
constexpr long unsigned int HEIGHT = 960;
#endif
constexpr bool OFFSCREEN = false;
#ifndef __EMSCRIPTEN__
constexpr const char* OUTPUT_FILENAME = "font-demo.mkv";
constexpr double FPS = 60;
#endif
using std::cerr;
using std::endl;
using std::string;
using std::vector;
using std::istringstream;
using namespace cv::v4d;
struct Params {
const cv::Scalar_<float> INITIAL_COLOR = cv::v4d::colorConvert(cv::Scalar(0.15 * 180.0, 128, 255, 255), cv::COLOR_HLS2RGB);
float minStarSize_ = 0.5f;
float maxStarSize_ = 1.5f;
int minStarCount_ = 1000;
int maxStarCount_ = 3000;
float starAlpha_ = 0.3f;
float fontSize_ = 40.0f;
cv::Scalar_<float> textColor_ = INITIAL_COLOR / 255.0;
float warpRatio_ = 1.0f/3.0f;
bool updateStars_ = true;
bool updatePerspective_ = true;
} params_;
//the text to display
vector<string> lines_;
//BGRA
cv::UMat stars_, warped_, frame_;
//transformation matrix
cv::Mat tm_;
cv::RNG rng_ = cv::getTickCount();
//line count
uint32_t cnt_ = 0;
//Total number of lines in the text
int32_t numLines_;
//Height of the text in pixels
int32_t textHeight_;
//y-value of the current line
int32_t y_ = 0;
int32_t translateY_;
public:
window->imgui([](cv::Ptr<V4D> win, ImGuiContext* ctx, Params& params){
CV_UNUSED(win);
using namespace ImGui;
SetCurrentContext(ctx);
Begin("Effect");
Text("Text Crawl");
SliderFloat("Font Size", ¶ms.fontSize_, 1.0f, 100.0f);
if(SliderFloat("Warp Ratio", ¶ms.warpRatio_, 0.1f, 1.0f))
params.updatePerspective_ = true;
ColorPicker4("Text Color", params.textColor_.val);
Text("Stars");
if(SliderFloat("Min Star Size", ¶ms.minStarSize_, 0.5f, 1.0f))
params.updateStars_ = true;
if(SliderFloat("Max Star Size", ¶ms.maxStarSize_, 1.0f, 10.0f))
params.updateStars_ = true;
if(SliderInt("Min Star Count", ¶ms.minStarCount_, 1, 1000))
params.updateStars_ = true;
if(SliderInt("Max Star Count", ¶ms.maxStarCount_, 1000, 5000))
params.updateStars_ = true;
if(SliderFloat("Min Star Alpha", ¶ms.starAlpha_, 0.2f, 1.0f))
params.updateStars_ = true;
End();
}, params_);
}
CV_UNUSED(window);
//The text to display
string txt = cv::getBuildInformation();
//Save the text to a vector
std::istringstream iss(txt);
for (std::string line; std::getline(iss, line); ) {
lines_.push_back(line);
}
numLines_ = lines_.size();
textHeight_ = (numLines_ * params_.fontSize_);
}
auto always = []() { return true; };
auto isTrue = [](const bool& b) { return b; };
window->branch(isTrue, params_.updateStars_);
{
using namespace cv::v4d::nvg;
clear();
//draw stars
for(int i = 0; i < numStars; ++i) {
beginPath();
strokeWidth(size);
stroke();
}
}, window->fbSize(), rng_, params_);
frameBuffer.copyTo(f);
}, stars_);
}
window->endbranch(isTrue, params_.updateStars_);
window->branch(isTrue, params_.updatePerspective_);
{
window->parallel([](cv::Mat& tm, const Params& params){
//Derive the transformation matrix tm for the pseudo 3D effect from quad1 and quad2.
vector<cv::Point2f> quad1 = {{0,0},{WIDTH,0},{WIDTH,HEIGHT},{0,HEIGHT}};
float l = (WIDTH - (WIDTH * params.warpRatio_)) / 2.0;
float r = WIDTH - l;
vector<cv::Point2f> quad2 = {{l, 0.0f},{r, 0.0f},{WIDTH,HEIGHT},{0,HEIGHT}};
tm = cv::getPerspectiveTransform(quad1, quad2);
}, tm_, params_);
}
window->endbranch(isTrue, params_.updatePerspective_);
window->branch(always);
{
window->nvg([](const cv::Size& sz, int32_t& ty, const int32_t& cnt, int32_t& y, const int32_t& textHeight, const std::vector<std::string> lines, const Params& params) {
//How many pixels to translate the text up.
ty = HEIGHT - cnt;
using namespace cv::v4d::nvg;
clear();
fontFace("sans-bold");
textAlign(NVG_ALIGN_CENTER | NVG_ALIGN_TOP);
translate(0, ty);
for (size_t i = 0; i < lines.size(); ++i) {
y = (i * params.fontSize_);
if (y + ty < textHeight && y + ty + params.fontSize_ > 0) {
}
}
}, window->fbSize(), translateY_, cnt_, y_, textHeight_, lines_, params_);
//Pseudo 3D text effect.
cv::warpPerspective(framebuffer, w, t, framebuffer.size(), cv::INTER_LINEAR, cv::BORDER_CONSTANT, cv::Scalar());
//Combine layers
cv::add(s, w, framebuffer);
}, warped_, stars_, tm_);
window->write();
window->parallel([](const int32_t& translateY, const int32_t& textHeight, uint32_t& cnt, Params& params) {
params.updatePerspective_ = false;
params.updateStars_ = false;
if(-translateY > textHeight) {
//reset the scroll once the text is out of the picture
cnt = 0;
}
++cnt;
//Wrap the cnt around if it becomes to big.
if(cnt > std::numeric_limits<uint32_t>().max() / 2.0)
cnt = 0;
}, translateY_, textHeight_, cnt_, params_);
}
window->endbranch(always);
}
};
int main() {
try {
cv::Ptr<V4D> window = V4D::make(WIDTH, HEIGHT, "Font Demo", ALL, OFFSCREEN);
#ifndef __EMSCRIPTEN__
window->setSink(sink);
#endif
window->run<FontDemoPlan>(0);
} catch(std::exception& ex) {
cerr << "Exception: " << ex.what() << endl;
}
return 0;
}
int uniform(int a, int b)
returns uniformly distributed integer random number from [a,b) range
Definition: mat.hpp:2432
MatSize size
dimensional size of the matrix; accessible in various formats
Definition: mat.hpp:2643
Definition: v4d.hpp:68
void add(InputArray src1, InputArray src2, OutputArray dst, InputArray mask=noArray(), int dtype=-1)
Calculates the per-element sum of two arrays or an array and a scalar.
void max(InputArray src1, InputArray src2, OutputArray dst)
Calculates per-element maximum of two arrays or an array and a scalar.
@ BORDER_CONSTANT
iiiiii|abcdefgh|iiiiiii with some specified i
Definition: base.hpp:269
const String & getBuildInformation()
Returns full configuration time cmake output.
Mat getPerspectiveTransform(InputArray src, InputArray dst, int solveMethod=DECOMP_LU)
Calculates a perspective transform from four pairs of the corresponding points.
void warpPerspective(InputArray src, OutputArray dst, InputArray M, Size dsize, int flags=INTER_LINEAR, int borderMode=BORDER_CONSTANT, const Scalar &borderValue=Scalar())
Applies a perspective transformation to an image.
PyParams params(const std::string &tag, const std::string &model, const std::string &weights, const std::string &device)
Net::Result infer(cv::GOpaque< cv::Rect > roi, T in)
Calculates response for the specified network (template parameter) for the specified region in the so...
Definition: infer.hpp:474
Definition: nvg.hpp:20
void textAlign(int align)
void translate(float x, float y)
void beginPath()
void fontSize(float size)
void fontFace(const char *font)
void strokeColor(const cv::Scalar &bgra)
void fillColor(const cv::Scalar &color)
void clear(const cv::Scalar &bgra=cv::Scalar(0, 0, 0, 255))
float text(float x, float y, const char *string, const char *end)
void stroke()
void strokeWidth(float size)
Definition: backend.hpp:15
cv::Ptr< Sink > makeWriterSink(cv::Ptr< V4D > window, const string &outputFilename, const float fps, const cv::Size &frameSize)
cv::Scalar colorConvert(const cv::Scalar &src, cv::ColorConversionCodes code)