C++PrimerPlus学习——第十一章编程练习

11-1
应该是修改list11.15,当当官方店买的,难道是盗版书吗。。。
打开file之后,操作跟cout类似

vect.h
#ifndef VECT_h_
#define VECT_h_
#include <iostream>
namespace VECTOR
{class Vector{public:enum Mode { RECT, POL };private:double x;double y;double mag;double ang;Mode mode;void set_mag();void set_ang();void set_x();void set_y();public:Vector();Vector(double n1, double n2, Mode form = RECT);void reset(double n1, double n2, Mode form = RECT);~Vector();double xval() const { return x; }double yval() const { return y; }double magval() const { return mag; }double angval() const { return ang; }void polar_mode();void rect_mode();Vector operator+(const Vector& b) const;Vector operator-(const Vector& b) const;Vector operator-() const;Vector operator*(double n) const;friend Vector operator*(double n, const Vector& a);friend std::ostream& operator << (std::ostream& os, const Vector& v);};
}#endif

vect.cpp

#include <cmath>
#include"vect.h"using namespace std;namespace VECTOR
{const double Rad_to_deg = 45.0 / atan(1.0);void Vector::set_mag(){mag = sqrt(x * x + y * y);}void Vector::set_ang(){if (x == 0.0 && y == 0.0)ang = 0.0;elseang = atan2(y, x);}void Vector::set_x(){x = mag * cos(ang);}void Vector::set_y(){y = mag * sin(ang);}Vector::Vector(){x = y = mag = ang = 0.0;mode = RECT;}Vector::Vector(double n1, double n2, Mode form){mode = form;if (form == RECT){x = n1;y = n2;set_mag();set_ang();}else if (form == POL){mag = n1;ang = n2 / Rad_to_deg;set_x();set_y();}else{cout << "Incorrect 3rd argument to Vector() -- ";cout << "vector set to 0\n";x = y = mag = ang = 0.0;mode = RECT;}}void Vector::reset(double n1, double n2, Mode form){mode = form;if (form == RECT){x = n1;y = n2;set_mag();set_ang();}else if (form == POL){mag = n1;ang = n2;set_x();set_y();}else{cout << "Incorrect 3rd argument to Vector() -- ";cout << "vector set to 0\n"; x = y = mag = ang = 0.0;mode = RECT;}}Vector::~Vector(){}void Vector::polar_mode(){mode = POL;}void Vector::rect_mode(){mode = RECT;}Vector Vector::operator+(const Vector& b) const{return Vector(x + b.x, y + b.y);}Vector Vector::operator-(const Vector& b) const{return Vector(x - b.x, y - b.y);}Vector Vector::operator-() const{return Vector(-x, -y);}Vector Vector::operator*(double n) const{return Vector(n * x, n * y);}Vector operator*(double n, const Vector& a){return a * n;}std::ostream& operator<<(std::ostream& os, const Vector& v){if (v.mode == Vector::RECT)os << "(x, y) = (" << v.x << ", " << v.y << ")";else if (v.mode == Vector::POL){os << "(m, a) = (" << v.mag << ", " << v.ang * Rad_to_deg << ")";}elseos << "Vector object mode is invalid";return os;}
}

main.cpp

#include <iostream>
#include <cstdlib>
#include <ctime>
#include <fstream>
#include "vect.h"
int main()
{using namespace std;using VECTOR::Vector;srand(time(0));double direction;Vector step;Vector result(0.0, 0.0);unsigned long steps = 0;double target;double dstep;ofstream file;file.open("C://test.txt");if (!file.is_open()) {cout << "Couldn't open the file!";exit(EXIT_FAILURE);}cout << "Enter target distance (q to quit):";while (cin >> target){cout << "Enter step length: ";if (!(cin >> dstep))break;file << "Target Distance: " << target << ", " << "Step Size: " << dstep << endl;while (result.magval() < target){direction = rand() % 360;step.reset(dstep, direction, Vector::POL);result = result + step;steps++;file << steps << ": (x, y) = (" << result.xval() << ", " << result.yval() << ")" << endl;}file << "After " << steps << " steps, the subject ""has the following location:\n";file << result << endl;result.polar_mode();file << " or\n" << result << endl;result.polar_mode();file << "Average outward distance per step = "<< result.magval() / steps << endl;steps = 0;result.reset(0.0, 0.0);cout << "Enter target distance (q to quit): ";}cout << "Bye!\n";cin.clear();while (cin.get() != '\n')continue;return 0;
}

11-2
不储存长度角度的话,去掉mag,ang,setmag(),setang(),其他函数也需要修改,main.cpp不变
vect.h

#ifndef VECT_h_
#define VECT_h_
#include <iostream>
namespace VECTOR
{class Vector{public:enum Mode { RECT, POL };private:double x;double y;Mode mode;public:Vector();Vector(double n1, double n2, Mode form = RECT);void reset(double n1, double n2, Mode form = RECT);~Vector();double xval() const { return x; }double yval() const { return y; }double magval() const;double angval() const;void polar_mode();void rect_mode();Vector operator+(const Vector& b) const;Vector operator-(const Vector& b) const;Vector operator-() const;Vector operator*(double n) const;friend Vector operator*(double n, const Vector& a);friend std::ostream& operator << (std::ostream& os, const Vector& v);};
}#endif

vect.cpp

#include <cmath>
#include"vect.h"using namespace std;namespace VECTOR
{const double Rad_to_deg = 45.0 / atan(1.0);Vector::Vector(){x = y = 0.0;mode = RECT;}Vector::Vector(double n1, double n2, Mode form){mode = form;if (form == RECT){x = n1;y = n2;}else if (form == POL){double mag, ang;mag = n1;ang = n2 / Rad_to_deg;x = mag * cos(ang);y = mag * sin(ang);}else{cout << "Incorrect 3rd argument to Vector() -- ";cout << "vector set to 0\n";x = y;mode = RECT;}}void Vector::reset(double n1, double n2, Mode form){mode = form;if (form == RECT){x = n1;y = n2;}else if (form == POL){x = n1* cos(n2);y = n1 * sin(n2);}else{cout << "Incorrect 3rd argument to Vector() -- ";cout << "vector set to 0\n"; x = y = 0.0;mode = RECT;}}Vector::~Vector(){}double Vector::magval() const{return sqrt(x * x + y * y);}double Vector::angval() const{ return (x == 0.0 && y == 0.0)?0.0:atan2(y, x);}void Vector::polar_mode(){mode = POL;}void Vector::rect_mode(){mode = RECT;}Vector Vector::operator+(const Vector& b) const{return Vector(x + b.x, y + b.y);}Vector Vector::operator-(const Vector& b) const{return Vector(x - b.x, y - b.y);}Vector Vector::operator-() const{return Vector(-x, -y);}Vector Vector::operator*(double n) const{return Vector(n * x, n * y);}Vector operator*(double n, const Vector& a){return a * n;}std::ostream& operator<<(std::ostream& os, const Vector& v){if (v.mode == Vector::RECT)os << "(x, y) = (" << v.x << ", " << v.y << ")";else if (v.mode == Vector::POL){os << "(m, a) = (" << v.magval() << ", " << v.angval() * Rad_to_deg << ")";}elseos << "Vector object mode is invalid";return os;}
}

11-3
前两个没变

main.cpp
#include <iostream>
#include <cstdlib>
#include <ctime>
#include <fstream>
#include "vect.h"
int main()
{using namespace std;using VECTOR::Vector;srand(time(0));double direction;Vector step;Vector result(0.0, 0.0);unsigned long steps = 0;double target;double dstep;ofstream file;int N,totalsteps = 0, maxsteps = 0, minsteps = 0;double averageSteps;file.open("C://test.txt");if (!file.is_open()) {cout << "Couldn't open the file!";exit(EXIT_FAILURE);}cout << "Enter times to try: ";cin >> N;cout << "Enter target distance (q to quit):";while (cin >> target){cout << "Enter step length: ";if (!(cin >> dstep))break;for (int i = 0; i < N; i++){file << "#" << i << " Target Distance: " << target << ", " << "Step Size: " << dstep << endl;while (result.magval() < target){direction = rand() % 360;step.reset(dstep, direction, Vector::POL);result = result + step;steps++;file << steps << ": (x, y) = (" << result.xval() << ", " << result.yval() << ")" << endl;}file << "After " << steps << " steps, the subject ""has the following location:\n";file << result << endl;result.polar_mode();file << " or\n" << result << endl;result.polar_mode();file << "Average outward distance per step = "<< result.magval() / steps << endl;if (maxsteps == 0 || minsteps == 0)maxsteps = minsteps = steps;if (maxsteps < steps)maxsteps = steps;else if (minsteps > steps)minsteps = steps;totalsteps += steps;steps = 0;result.reset(0.0, 0.0);}cout << "Average steps: " << totalsteps / N << endl;cout << "Max steps: " << maxsteps << endl;cout << "Min steps: " << minsteps << endl;cout << "Enter target distance (q to quit): ";}cout << "Bye!\n";cin.clear();while (cin.get() != '\n')continue;return 0;
}

11-4
主函数不变
mytime3.h

#ifndef MYTIME3_H_
#define MYTIME3_H_
#include <iostream>class Time
{
private:int hours;int minutes;
public:Time();Time(int h, int m = 0);void AddMin(int m);void AddHr(int h);void Reset(int h = 0, int m = 0);friend Time operator+(const Time& t1, const Time& t2);friend Time operator-(const Time& t1, const Time& t2);friend Time operator*(const Time& t, double m);friend Time operator*(double m, const Time& t);friend std::ostream& operator<<(std::ostream& os, const Time& t);
};
#endif // !MYTIME3_H_

mytime3.cpp

#include"mytime3.h"Time::Time()
{hours = minutes = 0;
}Time::Time(int h, int m)
{hours = h;minutes = m;
}void Time::AddMin(int m)
{minutes += m;hours += minutes / 60;minutes %= 60;
}void Time::AddHr(int h)
{hours += h;
}void Time::Reset(int h, int m)
{hours = h;minutes = m;
}Time operator+(const Time& t1, const Time& t2)
{Time sum;sum.minutes = t1.minutes + t2.minutes;sum.hours = t1.hours + t2.hours + sum.minutes / 60;sum.minutes %= 60;return sum;
}Time operator-(const Time& t1, const Time& t2)
{Time diff;int tot1, tot2;tot1 = t1.minutes + 60 * t1.hours;tot2 = t2.minutes + 60 * t2.hours;diff.minutes = (tot2 - tot1) % 60;diff.hours = (tot2 - tot1) / 60;return diff;
}Time operator*(double mult, const Time& t)
{Time result;long totalminutes = t.hours * mult * 60 + t.minutes * mult;result.hours = totalminutes / 60;result.minutes = totalminutes % 60;return result;
}
Time operator*(const Time& t, double mult)
{ Time result;long totalminutes = t.hours * mult * 60 + t.minutes * mult;result.hours = totalminutes / 60;result.minutes = totalminutes % 60;return result;
}
std::ostream& operator<<(std::ostream& os, const Time& t)
{os << t.hours << " hours, " << t.minutes << " minutes";return os;
}

main.cpp

#include <iostream>
#include"mytime3.h"int main()
{using std::cout;using std::endl;Time aida(3, 35);Time tosca(2, 48);Time temp;cout << "Aida and Tosca:\n"; cout << aida << "; " << tosca << endl;temp = aida + tosca;cout << "Aida + Tosca: " << temp << endl;temp = aida * 1.17;cout << "Aida * 1.17: " << temp << endl;cout << "10.0 * Tosca: " << 10.0 * tosca << endl;
}

11-5
结合前面的例子,重载运算符
stonewt.h

#ifndef STONEWT_H_
#define STONEWT_H_
class Stonewt
{
private:enum { Lbs_per_stn = 14 };enum Mode { STONE, FPO };int state;int	stone;double pds_left;double pounds;Mode mode;
public:Stonewt(double lbs);Stonewt(int stn, double lbs);Stonewt();~Stonewt();void set_mode();Stonewt operator+(const Stonewt& b) const;Stonewt operator-(const Stonewt& b) const;Stonewt operator*(double n) const;friend Stonewt operator*(double n, const Stonewt& a);friend std::ostream& operator<<(std::ostream& os, const Stonewt& v);
};#endif // !STONEWT

stonewt.cpp

#include <iostream>
using std::cout;
#include "stonewt.h"Stonewt::Stonewt()
{stone = pounds = pds_left = 0;mode = STONE;
}
Stonewt::Stonewt(double lbs)
{stone = int(lbs) / Lbs_per_stn;pds_left = int(lbs) % Lbs_per_stn + lbs - int(lbs);pounds = lbs;mode = FPO;
}
Stonewt::Stonewt(int stn, double lbs)
{stone = stn;pds_left = lbs;pounds = stn * Lbs_per_stn + lbs;mode = STONE;
}
Stonewt::~Stonewt() {}void Stonewt::set_mode()
{mode = STONE;
}
Stonewt Stonewt::operator+(const Stonewt& b) const
{Stonewt temp;temp.pounds = pounds + b.pounds;temp.stone = int(temp.pounds) / 14;temp.pds_left = int(temp.pounds) % 14 + temp.pounds - int(temp.pounds);return temp;
}
Stonewt Stonewt::operator-(const Stonewt& b) const
{Stonewt temp;temp.pounds = pounds - b.pounds;temp.stone = int(temp.pounds) / 14;temp.pds_left = int(temp.pounds) % 14 + temp.pounds - int(temp.pounds);return temp;
}
Stonewt Stonewt::operator*(double n) const
{Stonewt temp;temp.pounds = pounds * n;temp.stone = int(temp.pounds) / 14;temp.pds_left = int(temp.pounds) % 14 + temp.pounds - int(temp.pounds);return temp;
}
Stonewt operator*(double n, const Stonewt& a)
{Stonewt temp;temp.pounds = a.pounds * n;temp.stone = int(temp.pounds) / 14;temp.pds_left = int(temp.pounds) % 14 + temp.pounds - int(temp.pounds);return temp;
}
std::ostream& operator<<(std::ostream& os, const Stonewt& s)
{if (s.mode == Stonewt::STONE)os << "weighed " << s.stone << " stone, " << s.pds_left << " pounds\n";else if (s.mode == Stonewt::FPO)os << "weighed " << s.pounds << " pounds\n";elseos << "Stone object mode is invalid";return os;
}

main.cpp

#include <iostream>
#include "Stonewt.h"
using std::cout;
int main()
{Stonewt wolfe(285.7);Stonewt hew(10, 15);cout << wolfe;cout << hew;wolfe.set_mode();cout << wolfe;wolfe = wolfe - hew;cout << wolfe;wolfe = wolfe + hew;cout << wolfe;wolfe = wolfe * 10;cout << wolfe;return 0;
}

11-6
stonewt.h

#ifndef STONEWT_H_
#define STONEWT_H_
class Stonewt
{
private:enum { Lbs_per_stn = 14 };int state;int	stone;double pds_left;double pounds;
public:Stonewt(double lbs);Stonewt(int stn, double lbs);Stonewt();~Stonewt();bool operator<(const Stonewt& t) const;bool operator<=(const Stonewt& t) const;bool operator>(const Stonewt& t) const;bool operator>=(const Stonewt& t) const;bool operator==(const Stonewt& t) const;bool operator!=(const Stonewt& t) const;
};#endif // !STONEWT

stone.cpp

#include <iostream>
using std::cout;
#include "stonewt.h"Stonewt::Stonewt(double lbs)
{stone = int(lbs) / Lbs_per_stn;pds_left = int(lbs) % Lbs_per_stn + lbs - int(lbs);pounds = lbs;
}
Stonewt::Stonewt(int stn, double lbs)
{stone = stn;pds_left = lbs;pounds = stn * Lbs_per_stn + lbs;
}
Stonewt::Stonewt()
{stone = pounds = pds_left = 0;
}
Stonewt::~Stonewt() {}bool Stonewt::operator<(const Stonewt& t) const
{return pounds < t.pounds;
}
bool Stonewt::operator<=(const Stonewt& t) const
{return pounds <= t.pounds;
}
bool Stonewt::operator>(const Stonewt& t) const
{return pounds > t.pounds;
}
bool Stonewt::operator>=(const Stonewt& t) const
{return pounds >= t.pounds;
}
bool Stonewt::operator==(const Stonewt& t) const
{return pounds == t.pounds;
}
bool Stonewt::operator!=(const Stonewt& t) const
{return pounds != t.pounds;
}

main.cpp

#include <iostream>
#include "Stonewt.h"
using std::cout;
using std::cin;
using std::endl;
int main()
{Stonewt arr[6] = {Stonewt(11.1,0),Stonewt(10.1,1),Stonewt(12.1,2)};Stonewt temp(11, 0);for (int i = 3; i < 6; ++i){double p;cout << "Enter pounds: ";cin >> p;arr[i] = Stonewt(p);}int Max = 0;int Min = 0;int num = 0;for (int j = 0; j < 6; ++j){if (arr[Max] < arr[j])Max = j;if (arr[Min] > arr[j])Min = j;if (arr[j] >= temp)++num;}cout << "Max element: " << Max << endl;cout << "Min element : " << Min << endl;cout << "Number of elements above 11: " << num << endl;return 0;
}

11-7
complex0.h

#ifndef COMPLEX0_H_
#define COMPLEX0_H_
#include <iostream>
class complex
{
private:double re;double im;
public:complex();complex(double x, double y);~complex();complex operator+(complex& a);complex operator-(complex& a);complex operator*(complex& a);friend complex operator*(double n, complex& a);friend complex operator*(complex& a, double n);complex operator~();friend std::ostream& operator<<(std::ostream& os, const complex& c);friend std::istream& operator>>(std::istream& is, complex& c);
};#endif // !COMPLEX0_H_

complex.cpp

#include "complex0.h"
#include <iostream>
using namespace std;complex::complex()
{re = 0;im = 0;
}
complex::complex(double x, double y)
{re = x;im = y;
}complex::~complex()
{}complex complex::operator+(complex& a)
{return complex(re + a.re, im + a.im);
}
complex complex::operator-(complex& a)
{return complex(re - a.re, im - a.im);
}
complex complex::operator*(complex& a)
{return complex(re * a.re - im * a.im, re * a.im + im * a.re);
}
complex operator*(double n, complex& a)
{return complex(n * a.re, n * a.im);
}
complex operator*(complex& a, double n)
{return complex(n * a.re, n * a.im);
}
complex complex::operator~()
{return complex(re, -im);
}
std::ostream& operator<<(std::ostream& os, const complex& a)
{os << "(" << a.re << "," << a.im << "i)";return os;
}
std::istream& operator>>(std::istream& is, complex& c)
{cout << "real: ";is >> c.re;if (!is)return is;cout << "imaginary: ";is >> c.im;return is;
}

main.cpp

#include <iostream>
using namespace std;
#include "complex0.h"int main()
{complex a(3.0, 4.0);complex c;cout << "Enter a complex number (q to quit):\n";while (cin >> c){cout << "c is " << c << "\n";cout << "complex conjugate is " << ~c << "\n";cout << "a is " << a << "\n";cout << "a + c is " << a + c << "\n";cout << "a - c is " << a - c << "\n";cout << "a * c is " << a * c << "\n";cout << "2 * c is " << 2 * c << "\n";cout << "Enter a complex number (q to quit):\n";};cout << "Done!\n";return 0;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/550511.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

C++PrimerPlus学习——第十三章编程练习

13-1 注意char*前面加const&#xff0c;不然就会报错 Classis.h #ifndef CLASSIC_H_ #define CLASS_H_ #include <string> class Cd { private:char performers[50];char label[20];int selections;double playtime; public:Cd(const char* s1, const char* s2, int n, …

C++PrimerPlus学习——第十四章编程练习

14-1 参考14.19 winec.h #ifndef WINEC_H_ #define WINEC_H_ #include <string> #include <valarray> using std::string;template<class T1, class T2> class Pair { private:T1 year;T2 bottles; public:Pair() {};Pair(const T1 y, const T2 b) :year(y)…

C++PrimerPlus学习——第十七章编程练习

17-1 不知道有没有理解错题意&#xff0c;参考list17.14 #include <iostream>int main() {using std::cout;using std::cin;using std::endl;char ch;int count 0;while (cin.peek() ! $){cin.get(ch);count;cout << ch;}cout << "\nThere are "…

数字图像处理基础与应用学习,第二章

计算灰度直方图和RGB三个通道的灰度直方图 Tips 1.计算灰度 cv2.calcHist(images, channels, mask, histSize, ranges[, hist[, accumulate ]]) imaes:输入的图像 channels:选择图像的通道 mask:掩膜&#xff0c;是一个大小和image一样的np数组&#xff0c;其中把需要处理的部分…

数字图像处理基础与应用 第四章

3-1 (1) 感觉就是图像模糊了&#xff0c;并没有去噪 from cv2 import cv2 import numpy as np import randomdef spNoise(img,prob):# 添加椒盐噪声,prob:噪声比例 output np.zeros(img.shape,np.uint8)thres 1 - prob for i in range(img.shape[0]):for j in range(img.sha…

数字图像处理基础与应用 第五章

5-1感觉这些方法主体都差不多&#xff0c;就是微分算子不同&#xff0c;懒得一个个写了 from cv2 import cv2 import numpy as np import randomdef singleDirectionsharpen(img, N3):p N // 2img_shape np.shape(img)out np.zeros(img_shape)for i in range(img_shape[0])…

新版scipy中的imread,imsave,imresize被弃用解决方法

阅读文献代码时发现新版scipy中的imread,imsave,imresize被弃用报错 搜索了一下发现可以用imageio中的imread和imsave代替原有的&#xff0c;用numpy的reshape来代替imresize 试了一下&#xff0c;不太行&#xff0c;文献中imread有mode‘L’&#xff0c;即读取灰度图&#xff…

anaconda中tensorflow-estimator版本应与tensorflow-gpu版本相同

把tensorflow升级到2.1.0版本是发现import tensorflow as tf出错 发现是anaconda安装的tensorflow-estimator版本是2.2.0&#xff0c;将版本回退到2.1.0后解决了问题

tf.contrib在tf2中无法使用

在尝试文献中代码时发现tf.comtrib无法使用 官方文档中说 It is still possible to run 1.X code, unmodified (except for contrib), in TensorFlow 2.0: import tensorflow.compat.v1 as tf tf.disable_v2_behavior()除了contrib应该都用能两行代码解决问题,contrib则用kera…

发现了imageio文档中有代替scipy.misc的说明

原文&#xff1a;https://imageio.readthedocs.io/en/latest/scipy.html?highlightimread imageio.imread可以代替scipy.misc.imread 用pilmode代替mode 用as_gray代替flatten pilmode类型&#xff1a; ‘L’ (8-bit pixels, grayscale) ‘P’ (8-bit pixels, mapped to an…

fastai学习笔记——安装

虽然说是推荐linux&#xff0c;windows可能有bug&#xff0c;但是我还是没办法只用linux win10anaconda python3.7 安装很简单 conda install -c fastchan fastai anaconda 好了也没发现有啥问题 测试torch是否可用 import torch cuda.test.is_available()True

fastai学习——第一个bug

跟着视频学习&#xff0c;在运行第一段测试代码的时候出现问题 from fastai.vision.all import * path untar_data(URLs.PETS)/imagesdef is_cat(x): return x[0].isupper() dls ImageDataLoaders.from_name_func(path, get_image_files(path), valid_pct0.2, seed42,label_…

fastai学习:01_intro Questionnaire

fastAI Questionnaire 感觉还挺多的&#xff0c;怪不得说每一课要额外8小时进行学习。 1.Do you need these for deep learning? Lots of math T / F Lots of data T / F Lots of expensive computers T / F A PhD T / F F F F F 2.Name five areas where deep learning is …

fastai学习——第二个问题

第二节课需要使用bing image search api获取bing图片搜索中的熊图片&#xff0c;此时发现获取api需要注册azure&#xff0c;卡在绑定卡上很久&#xff0c;想了想还要去弄一张带visa的卡&#xff0c;还是算了&#xff0c;就用猫狗大战数据集实验吧&#xff0c;按照与学习视频中类…

fastai学习:02_production Questionnaire

1.Where do text models currently have a major deficiency? Deep learning is currently not good at generating correct responses! We don’t currently have a reliable way to, for instance, combine a knowledge base of medical information with a deep learning m…

fastai学习:04_mnist_basics Questionnaire

1.How is a grayscale image represented on a computer? How about a color image? 灰度图&#xff1a;单通道&#xff0c;0-256 彩色图&#xff1a;三通道RGB或HSV&#xff0c;0-256 2.How are the files and folders in the MNIST_SAMPLE dataset structured? Why? 分为…

fastai学习:05_pet_breeds Questionnaire

1.Why do we first resize to a large size on the CPU, and then to a smaller size on the GPU? 首先&#xff0c;在训练模型时&#xff0c;我们希望能够将图片的尺寸统一&#xff0c;整理为张量&#xff0c;传入GPU&#xff0c;我们还希望最大限度地减少执行不同增强计算的…

fastai学习:06_multicat Questionnarie

1.How could multi-label classification improve the usability of the bear classifier? 可以对不存在的熊进行分类 2.How do we encode the dependent variable in a multi-label classification problem? One-hot encoding: Using a vector of zeros, with a one in each…

【论文阅读笔记】Detecting Camouflaged Object in Frequency Domain

1.论文介绍 Detecting Camouflaged Object in Frequency Domain 基于频域的视频目标检测 2022年发表于CVPR [Paper] [Code] 2.摘要 隐藏目标检测&#xff08;COD&#xff09;旨在识别完美嵌入其环境中的目标&#xff0c;在医学&#xff0c;艺术和农业等领域有各种下游应用。…

ubuntu中使用firefox浏览器播放bilibili的h5网页视频

安装好系统后&#xff0c;直接firefox打开bilibili显示没有flash插件 找了一圈没有发现自动播放h5的选项 搜索了一下发现可能是需要解码器 sudo apt-get install ubuntu-restricted-extras就能看了